From ee823ff0c46d31550846aff7a7a2f44b065b4781 Mon Sep 17 00:00:00 2001 From: DmitryGantimurov Date: Wed, 19 Jul 2023 00:11:57 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=D0=B8=20responce=5Fmodel=3DUser=20=D0=BA=20get=5Fcurrent=5Fuse?= =?UTF-8?q?r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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