aboutsummaryrefslogtreecommitdiff
path: root/instance/sqlite.py
diff options
context:
space:
mode:
Diffstat (limited to 'instance/sqlite.py')
-rw-r--r--instance/sqlite.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/instance/sqlite.py b/instance/sqlite.py
index de6aab23..1f8d6206 100644
--- a/instance/sqlite.py
+++ b/instance/sqlite.py
@@ -78,7 +78,8 @@ LDAP_USER_ATTRIB_MEMBEROF = "memberof"
LDAP_GROUP_DISPLAY_ATTRIB = "cn"
LDAP_BIND_DN = "uid=sampleuser,cn=users,cn=accounts,dc=ipa,dc=internal,dc=com"
LDAP_BIND_PASSWORD = "examplepassword"
-# Additional filter to restrict user lookup. If not equivalent to False (e.g., undefined), will be logical-anded to the user-match-attribute search filter.
+# Additional filter to restrict user lookup. If not equivalent to False
+# (e.g., undefined), will be logical-anded to the user-match-attribute search filter.
LDAP_FILTER = (
"(memberOf=cn=newspipe-users,cn=groups,cn=accounts,dc=ipa,dc=internal,dc=com)"
)
bgstack15