добавили responce_model=User к get_current_user

This commit is contained in:
DmitryGantimurov 2023-07-19 00:11:57 +03:00
parent 6127dd8ba4
commit d5ba710885

View File

@ -76,7 +76,7 @@ async def get_current_user(db: SessionLocal, token: Annotated[str, Depends(oauth
headers={"WWW-Authenticate": "Bearer"}, headers={"WWW-Authenticate": "Bearer"},
) )
try: 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") email: str = payload.get("sub")
if email is None: if email is None:
raise credentials_exception raise credentials_exception