New rate model added
This commit is contained in:
@@ -21,4 +21,14 @@ class Config:
|
||||
)
|
||||
|
||||
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
||||
|
||||
|
||||
|
||||
# LDAP Configuration New
|
||||
LDAP_SERVER = os.getenv("LDAP_SERVER")
|
||||
LDAP_PORT = int(os.getenv("LDAP_PORT", 389))
|
||||
LDAP_USE_SSL = os.getenv("LDAP_USE_SSL", "False").lower() == "true"
|
||||
|
||||
LDAP_BASE_DN = os.getenv("LDAP_BASE_DN")
|
||||
LDAP_DOMAIN = os.getenv("LDAP_DOMAIN")
|
||||
|
||||
LDAP_SEARCH_BASE = os.getenv("LDAP_SEARCH_BASE")
|
||||
Reference in New Issue
Block a user