mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 05:24:02 +00:00
Fix: set jwt_token to cookie (instead of token from OIDC)
This commit is contained in:
parent
57c330576d
commit
7d10dacad6
@ -1983,7 +1983,7 @@ async def oauth_callback(provider: str, request: Request, response: Response):
|
||||
# Set the cookie token
|
||||
response.set_cookie(
|
||||
key="token",
|
||||
value=token,
|
||||
value=jwt_token,
|
||||
httponly=True, # Ensures the cookie is not accessible via JavaScript
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user