From 8ae3aaea9e75eea967ad8421ff77ff3369059d82 Mon Sep 17 00:00:00 2001 From: Thomas Krahn Date: Mon, 6 Jul 2020 15:12:35 +0200 Subject: [PATCH] LDAP: Fix wrong attribute name UserMemberOffAttribute --- ldap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldap.go b/ldap.go index 031701c..4fbe365 100644 --- a/ldap.go +++ b/ldap.go @@ -39,7 +39,7 @@ type LDAP struct { UserEmailAddressAttribute string `json:"userEmailAddressAttribute,omitempty"` UserIDAttribute string `json:"userIdAttribute,omitempty"` UserLDAPFilter string `json:"userLdapFilter,omitempty"` - UserMemberOffAttribute string `json:"userMemberOfAttribute,omitempty"` + UserMemberOfAttribute string `json:"userMemberOfAttribute,omitempty"` UserObjectClass string `json:"userObjectClass,omitempty"` UserPasswordAttribute string `json:"userPasswordAttribute,omitempty"` UserRealNameAttribute string `json:"userRealNameAttribute,omitempty"`