Патч
All checks were successful
Build And Push / publish (push) Successful in 1m12s

This commit is contained in:
2025-11-12 12:19:30 +03:00
parent cf1324633d
commit 043de7e034
8 changed files with 76 additions and 21 deletions

View File

@ -73,6 +73,6 @@ async def callback(session: AsyncSessionDep, code: str):
user = existing_user
access_token = secrets.token_urlsafe(32)
cache.set(access_token, f'user:{user.id}')
await cache.set(access_token, f'user:{user.id}')
return s.Token(access_token=access_token)