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:
Tim Jaeryang Baek
2025-08-06 14:22:48 +04:00
committed by GitHub
6 changed files with 957 additions and 2 deletions

View File

@@ -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
####################################