diff options
Diffstat (limited to 'gn_auth/auth/authentication/users.py')
-rw-r--r-- | gn_auth/auth/authentication/users.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authentication/users.py b/gn_auth/auth/authentication/users.py index 2f8caa1..7a41a14 100644 --- a/gn_auth/auth/authentication/users.py +++ b/gn_auth/auth/authentication/users.py @@ -107,7 +107,7 @@ def set_user_password( {"user_id": str(user.user_id), "hash": hashed_password}) return user, hashed_password -def users(conn: db.DbConnection, +def fetch_users(conn: db.DbConnection, ids: tuple[UUID, ...] = tuple()) -> tuple[User, ...]: """ Fetch all users with the given `ids`. If `ids` is empty, return ALL users. |