refac/enh

This commit is contained in:
Timothy Jaeryang Baek
2025-08-28 03:24:26 +04:00
parent 2bb6063dcb
commit 12bd04d24d
3 changed files with 17 additions and 7 deletions

View File

@@ -404,6 +404,10 @@ except ValueError:
####################################
WEBUI_AUTH = os.environ.get("WEBUI_AUTH", "True").lower() == "true"
ENABLE_INITIAL_ADMIN_SIGNUP = (
os.environ.get("ENABLE_INITIAL_ADMIN_SIGNUP", "False").lower() == "true"
)
ENABLE_SIGNUP_PASSWORD_CONFIRMATION = (
os.environ.get("ENABLE_SIGNUP_PASSWORD_CONFIRMATION", "False").lower() == "true"
)