From 8513e8610b7439247a2cb5b90ba127c97869c65d Mon Sep 17 00:00:00 2001 From: DmitryGantimurov Date: Wed, 19 Jul 2023 00:14:56 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=20response=5Fmodel=3DUser=20=D0=B2=20get=5Fcurrent?= =?UTF-8?q?=5Fuser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/back/utils.py b/back/utils.py index 68df045..1b8bd01 100644 --- a/back/utils.py +++ b/back/utils.py @@ -69,14 +69,14 @@ def create_access_token(data: dict, expires_delta: Union[timedelta, None] = None return encoded_jwt -async def get_current_user(db: SessionLocal, token: Annotated[str, Depends(oauth2_scheme)]): +async def get_current_user(db: SessionLocal, token: Annotated[str, Depends(oauth2_scheme)], response_model=User): credentials_exception = HTTPException( status_code=status.HTTP_401_UNAUTHORIZED, detail="Could not validate credentials", headers={"WWW-Authenticate": "Bearer"}, ) try: - payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM], response_model=User) + payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM]) email: str = payload.get("sub") if email is None: raise credentials_exception