mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 21:35:19 +00:00
Fix: set jwt_token to cookie (instead of token from OIDC)
This commit is contained in:
parent
57c330576d
commit
7d10dacad6
1 changed files with 1 additions and 1 deletions
|
|
@ -1983,7 +1983,7 @@ async def oauth_callback(provider: str, request: Request, response: Response):
|
||||||
# Set the cookie token
|
# Set the cookie token
|
||||||
response.set_cookie(
|
response.set_cookie(
|
||||||
key="token",
|
key="token",
|
||||||
value=token,
|
value=jwt_token,
|
||||||
httponly=True, # Ensures the cookie is not accessible via JavaScript
|
httponly=True, # Ensures the cookie is not accessible via JavaScript
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue