diff options
author | Munyoki Kilyungi | 2024-03-13 13:33:18 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-03-13 15:34:57 +0300 |
commit | ef6c708c5684a6ec0047e3e9725d1b2273551f9c (patch) | |
tree | 9c463409c8501ced5eefec07d79537600646890d /gn_auth/auth/authentication/oauth2/models | |
parent | bdbadc86218622e56a192eccf3a83542804d7f8d (diff) | |
download | gn-auth-ef6c708c5684a6ec0047e3e9725d1b2273551f9c.tar.gz |
Rename users -> fetch_users.
Use verbs for methods.
* gn_auth/auth/authentication/oauth2/models/oauth2client.py (OAuth2Client):
(oauth2_clients): Rename users -> fetch_users.
* gn_auth/auth/authentication/users.py (users): Ditto.
(fetch_users): Ditto.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn_auth/auth/authentication/oauth2/models')
-rw-r--r-- | gn_auth/auth/authentication/oauth2/models/oauth2client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn_auth/auth/authentication/oauth2/models/oauth2client.py b/gn_auth/auth/authentication/oauth2/models/oauth2client.py index b140a16..1ea7b06 100644 --- a/gn_auth/auth/authentication/oauth2/models/oauth2client.py +++ b/gn_auth/auth/authentication/oauth2/models/oauth2client.py @@ -12,7 +12,7 @@ from pymonad.maybe import Just, Maybe, Nothing from gn_auth.auth.db import sqlite3 as db from gn_auth.auth.authentication.users import (User, - users, + fetch_users, user_by_id, same_password) @@ -236,7 +236,7 @@ def oauth2_clients(conn: db.DbConnection) -> tuple[OAuth2Client, ...]: cursor.execute("SELECT * FROM oauth2_clients") clients_rs = cursor.fetchall() the_users = { - usr.user_id: usr for usr in users( + usr.user_id: usr for usr in fetch_users( conn, tuple({UUID(result["user_id"]) for result in clients_rs})) } |