forked from open-webui/open-webui
Pass the instance we're using.
This commit is contained in:
parent
8c37edd027
commit
e15dbdc46a
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ ALGORITHM = "HS256"
|
|||
# Auth Utils
|
||||
##############
|
||||
|
||||
bearer_scheme = HTTPBearer()
|
||||
bearer_security = HTTPBearer()
|
||||
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 ") :]
|
||||
|
||||
|
||||
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)
|
||||
if data != None and "id" in data:
|
||||
user = Users.get_user_by_id(data["id"])
|
||||
|
|
Loading…
Reference in a new issue