Browse Source

Pass the instance we're using.

Tim Farrell 1 year ago
parent
commit
e15dbdc46a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      backend/utils/utils.py

+ 2 - 2
backend/utils/utils.py

@@ -21,7 +21,7 @@ ALGORITHM = "HS256"
 # Auth Utils
 # Auth Utils
 ##############
 ##############
 
 
-bearer_scheme = HTTPBearer()
+bearer_security = HTTPBearer()
 pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
 pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
 
 
 
 
@@ -58,7 +58,7 @@ def extract_token_from_auth_header(auth_header: str):
     return auth_header[len("Bearer ") :]
     return auth_header[len("Bearer ") :]
 
 
 
 
-def get_current_user(auth_token: HTTPAuthorizationCredentials = Depends(HTTPBearer())):
+def get_current_user(auth_token: HTTPAuthorizationCredentials = Depends(bearer_security)):
     data = decode_token(auth_token.credentials)
     data = decode_token(auth_token.credentials)
     if data != None and "id" in data:
     if data != None and "id" in data:
         user = Users.get_user_by_id(data["id"])
         user = Users.get_user_by_id(data["id"])