We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e9265 commit 97fe65dCopy full SHA for 97fe65d
services/graph/pkg/identity/ldap_group.go
@@ -436,7 +436,7 @@ func (i *LDAP) getGroupCreateLDAPDN(group libregraph.Group) string {
436
func (i *LDAP) groupToLDAPAttrValues(group libregraph.Group) (map[string][]string, error) {
437
attrs := map[string][]string{
438
i.groupAttributeMap.name: {group.GetDisplayName()},
439
- "objectClass": {"groupOfNames", "top"},
+ "objectClass": {i.groupObjectClass, "top"},
440
// This is a crutch to allow groups without members for LDAP servers
441
// that apply strict Schema checking. The RFCs define "member/uniqueMember"
442
// as required attribute for groupOfNames/groupOfUniqueNames. So we
0 commit comments