fix: set oauth token secure and samesite per config

This commit is contained in:
Jeetesh Chellani
2024-10-09 12:59:35 +03:00
parent b38e2fab32
commit a2e889c8bb
2 changed files with 10 additions and 0 deletions

View File

@@ -2385,6 +2385,8 @@ async def oauth_callback(provider: str, request: Request, response: Response):
key="token",
value=jwt_token,
httponly=True, # Ensures the cookie is not accessible via JavaScript
samesite=WEBUI_SESSION_COOKIE_SAME_SITE,
secure=WEBUI_SESSION_COOKIE_SECURE,
)
# Redirect back to the frontend with the JWT token