mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-07 08:27:05 +00:00
refac/fix: OAUTH_GROUPS_CLAIM env var
This commit is contained in:
parent
72023f4d03
commit
daa4b3284f
1 changed files with 1 additions and 1 deletions
|
|
@ -510,7 +510,7 @@ OAUTH_EMAIL_CLAIM = PersistentConfig(
|
|||
OAUTH_GROUPS_CLAIM = PersistentConfig(
|
||||
"OAUTH_GROUPS_CLAIM",
|
||||
"oauth.oidc.group_claim",
|
||||
os.environ.get("OAUTH_GROUP_CLAIM", "groups"),
|
||||
os.environ.get("OAUTH_GROUPS_CLAIM", os.environ.get("OAUTH_GROUP_CLAIM", "groups")),
|
||||
)
|
||||
|
||||
ENABLE_OAUTH_ROLE_MANAGEMENT = PersistentConfig(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue