diff --git a/back/utils.py b/back/utils.py index 0f28c18..68df045 100644 --- a/back/utils.py +++ b/back/utils.py @@ -76,7 +76,7 @@ async def get_current_user(db: SessionLocal, token: Annotated[str, Depends(oauth headers={"WWW-Authenticate": "Bearer"}, ) try: - payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM]) + payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM], response_model=User) email: str = payload.get("sub") if email is None: raise credentials_exception