This commit is contained in:
cazagen 2019-11-11 23:45:10 +00:00
parent 9df7d53dce
commit 576e70521b

View File

@ -61,9 +61,9 @@ class LDAPUserManager(FilebasedUserManager,
#connection.bind_s(dn, password)
#connection.unbind_s()
data = check_auth(self, username, password)
for group in ldapify_groups(LDAP_GROUPS):
data = self.check_auth(self, username, password)
for group in self.ldapify_groups(self,LDAP_GROUPS):
if group in data.get('memberOf', []):
user = FilebasedUserManager.findUser(self, username)
if not user: