diff --git a/src/caosdb/connection/connection.py b/src/caosdb/connection/connection.py index 65c8413c251ad42f44b77e37ac34a26b1c329c0d..86fa309e66e077d680cd6659560dafcacaefda70 100644 --- a/src/caosdb/connection/connection.py +++ b/src/caosdb/connection/connection.py @@ -608,3 +608,12 @@ class _Connection(object): # pylint: disable=useless-object-inheritance _handle_response_status(http_response) return http_response + + def get_username(self): + """ + Return the username of the current connection. + + Shortcut for: get_connection()._authenticator._credentials_provider.username + """ + return self._authenticator._credentials_provider.username +