forked from Github-Mirrors/canaille
Fix: spellcheck configuration key
This commit is contained in:
parent
98a4fef62a
commit
3016f2504b
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def setup_ldap_models(app):
|
||||||
if group_base.endswith(app.config["LDAP"]["ROOT_DN"]):
|
if group_base.endswith(app.config["LDAP"]["ROOT_DN"]):
|
||||||
group_base = group_base[: -len(app.config["LDAP"]["ROOT_DN"]) - 1]
|
group_base = group_base[: -len(app.config["LDAP"]["ROOT_DN"]) - 1]
|
||||||
Group.base = group_base
|
Group.base = group_base
|
||||||
Group.id = app.config["LDAP"].get("GROUP_ID_ATTRIBTUE", Group.DEFAULT_ID_ATTRIBUTE)
|
Group.id = app.config["LDAP"].get("GROUP_ID_ATTRIBUTE", Group.DEFAULT_ID_ATTRIBUTE)
|
||||||
|
|
||||||
|
|
||||||
def setup_backend(app):
|
def setup_backend(app):
|
||||||
|
|
Loading…
Reference in a new issue