Skip to content

Commit

Permalink
Merge pull request #349 from nextcloud/ldab-groupOfUniqueNames
Browse files Browse the repository at this point in the history
add groupOfUniqueNames as valid group object class
  • Loading branch information
blizzz authored Jul 26, 2016
2 parents b709d59 + 81d4d85 commit f88109b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user_ldap/lib/Wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ public function determineGroupObjectClasses() {
throw new \Exception('Could not connect to LDAP');
}

$obclasses = array('groupOfNames', 'group', 'posixGroup', '*');
$obclasses = array('groupOfNames', 'groupOfUniqueNames', 'group', 'posixGroup', '*');
$this->determineFeature($obclasses,
'objectclass',
'ldap_groupfilter_objectclass',
Expand Down

0 comments on commit f88109b

Please sign in to comment.