Skip to content

Commit

Permalink
LdapRepository: Add a bunch of additional well known attribute names
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Meyer committed Sep 28, 2015
1 parent e5f2174 commit e1aab18
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions library/Icinga/Repository/LdapRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,18 @@ abstract class LdapRepository extends Repository
* @var array
*/
protected $normedAttributes = array(
'uid' => 'uid',
'gid' => 'gid',
'user' => 'user',
'group' => 'group',
'member' => 'member',
'inetorgperson' => 'inetOrgPerson',
'samaccountname' => 'sAMAccountName'
'uid' => 'uid',
'gid' => 'gid',
'user' => 'user',
'group' => 'group',
'member' => 'member',
'memberuid' => 'memberUid',
'posixgroup' => 'posixGroup',
'uniquemember' => 'uniqueMember',
'groupofnames' => 'groupOfNames',
'inetorgperson' => 'inetOrgPerson',
'samaccountname' => 'sAMAccountName',
'groupofuniquenames' => 'groupOfUniqueNames'
);

/**
Expand Down

0 comments on commit e1aab18

Please sign in to comment.