diff options
author | 2021-03-01 16:56:02 +0300 | |
---|---|---|
committer | 2021-03-01 16:56:02 +0300 | |
commit | da41f255a06516c1b7b85a587b982535cd7fec54 (patch) | |
tree | ef223949e66cf92ffca6e7a66e0c9d3289aa33a8 /backend/authentication/backend.py | |
parent | Allows All CORS Requests On Development (diff) |
Make Admin Fetch Async
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'backend/authentication/backend.py')
-rw-r--r-- | backend/authentication/backend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/authentication/backend.py b/backend/authentication/backend.py index bdff796..206d1eb 100644 --- a/backend/authentication/backend.py +++ b/backend/authentication/backend.py @@ -61,7 +61,7 @@ class JWTAuthenticationBackend(authentication.AuthenticationBackend): raise authentication.AuthenticationError("Could not parse user details.") user = User(token, user_details) - if user.fetch_admin_status(request): + if await user.fetch_admin_status(request): scopes.append("admin") return authentication.AuthCredentials(scopes), user |