tentative to add ci pipeline
This commit is contained in:
parent
1a075a6495
commit
24afe9fa9e
@ -32,7 +32,7 @@ def create_access_token(data: dict) -> str:
|
|||||||
to_encode = data.copy()
|
to_encode = data.copy()
|
||||||
expire = datetime.now(timezone.utc) + timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
|
expire = datetime.now(timezone.utc) + timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
|
||||||
to_encode.update({"exp": expire})
|
to_encode.update({"exp": expire})
|
||||||
return jwt.encode(to_encode, SECRET_KEY, algorithm=ALGORITHM)
|
return jwt.encode(to_encode, SECRET_KEY, algorithm="HS256")
|
||||||
|
|
||||||
async def get_current_user(token: str = Depends(oauth2_scheme)) -> loginData:
|
async def get_current_user(token: str = Depends(oauth2_scheme)) -> loginData:
|
||||||
credentials_exception = HTTPException(
|
credentials_exception = HTTPException(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user