diff options
Diffstat (limited to 'api/routes')
-rw-r--r-- | api/routes/auth_routes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/routes/auth_routes.py b/api/routes/auth_routes.py index 823feff..b625da3 100644 --- a/api/routes/auth_routes.py +++ b/api/routes/auth_routes.py @@ -43,7 +43,7 @@ async def login_for_access_token( key="access_token", value=access_token, httponly=True, # Prevents client-side access - # secure=True, # Cookies are only sent over HTTPS + secure=True, # Cookies are only sent over HTTPS ) return response |