We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7423ee3 commit 3946faaCopy full SHA for 3946faa
1 file changed
rootfs/api/settings/production.py
@@ -431,12 +431,12 @@
431
AUTH_LDAP_USER_SEARCH = LDAPSearch(
432
base_dn=LDAP_USER_BASEDN,
433
scope=ldap.SCOPE_SUBTREE,
434
- filterstr="(%s=%%(user)s)" % LDAP_USER_FILTER
+ filterstr="%s" % LDAP_USER_FILTER
435
)
436
AUTH_LDAP_GROUP_SEARCH = LDAPSearch(
437
base_dn=LDAP_GROUP_BASEDN,
438
439
- filterstr="(%s)" % LDAP_GROUP_FILTER
+ filterstr="%s" % LDAP_GROUP_FILTER
440
441
AUTH_LDAP_USER_FLAGS_BY_GROUP = {
442
'is_active': LDAP_ACTIVE_GROUP,
0 commit comments