diff options
author | Frederick Muriuki Muriithi | 2024-05-30 12:03:38 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-06-03 10:02:08 -0500 |
commit | 7c0ee01c1d134cbee0a2c8243dd55e4eeaaa5f7c (patch) | |
tree | caeb61fab877b7b344608af4a55b36a18b3283c2 /gn_auth/auth/authentication/oauth2/grants | |
parent | d2e9e9afde6d01bca49e5173282ac318c37460e0 (diff) | |
download | gn-auth-7c0ee01c1d134cbee0a2c8243dd55e4eeaaa5f7c.tar.gz |
Move user creation from db resultset into static method
Creation of a User object from the database resultset will mostly be
the same. This commit moves the repetitive code into a static method
that can be called wherever we need it.
This improves maintainability, since we only ever need to do an update
in one place now.
Diffstat (limited to 'gn_auth/auth/authentication/oauth2/grants')
-rw-r--r-- | gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py b/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py index a40292e..c285c96 100644 --- a/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py +++ b/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py @@ -81,8 +81,7 @@ class AuthorisationCodeGrant(grants.AuthorizationCodeGrant): cursor.execute(query, (str(authorization_code.code),)) res = cursor.fetchone() if res: - return User( - uuid.UUID(res["user_id"]), res["email"], res["name"]) + return User.from_sqlite3_row(res) return None |