mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 03:47:49 +01:00
Merge pull request #15694 from dieu-bis/feat/scim-2.0-support
FEAT: Add SCIM 2.0 support for automated user provisioning
This commit is contained in:
@@ -855,6 +855,22 @@ ENABLE_DIRECT_CONNECTIONS = PersistentConfig(
|
||||
os.environ.get("ENABLE_DIRECT_CONNECTIONS", "True").lower() == "true",
|
||||
)
|
||||
|
||||
####################################
|
||||
# SCIM Configuration
|
||||
####################################
|
||||
|
||||
SCIM_ENABLED = PersistentConfig(
|
||||
"SCIM_ENABLED",
|
||||
"scim.enabled",
|
||||
os.environ.get("SCIM_ENABLED", "False").lower() == "true",
|
||||
)
|
||||
|
||||
SCIM_TOKEN = PersistentConfig(
|
||||
"SCIM_TOKEN",
|
||||
"scim.token",
|
||||
os.environ.get("SCIM_TOKEN", ""),
|
||||
)
|
||||
|
||||
####################################
|
||||
# OLLAMA_BASE_URL
|
||||
####################################
|
||||
|
||||
Reference in New Issue
Block a user