refac: scim

This commit is contained in:
Timothy Jaeryang Baek
2025-08-06 14:25:42 +04:00
parent f0e1c3f540
commit 6c06024cf9
3 changed files with 12 additions and 23 deletions

View File

@@ -855,22 +855,6 @@ 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
####################################