refac: disable ldap by default

This commit is contained in:
Timothy J. Baek
2024-11-05 19:58:54 -08:00
parent 040449be01
commit 2910cbe9a9
2 changed files with 16 additions and 15 deletions

View File

@@ -1595,7 +1595,7 @@ AUDIO_TTS_AZURE_SPEECH_OUTPUT_FORMAT = PersistentConfig(
ENABLE_LDAP = PersistentConfig(
"ENABLE_LDAP",
"ldap.enable",
os.environ.get("ENABLE_LDAP", "True").lower() == "true",
os.environ.get("ENABLE_LDAP", "false").lower() == "true",
)
LDAP_SERVER_LABEL = PersistentConfig(