Auth LDAP can retrieve a list of groups and users

This commit is contained in:
Daniel Berteaud 2014-07-05 10:31:34 +02:00
parent cb9c3daecf
commit f20cef3931
1 changed files with 3 additions and 3 deletions

View File

@ -33,10 +33,10 @@ class auth_plugin_authhttpldap extends auth_plugin_authldap {
'modName' => false, // can real names be changed?
'modMail' => false, // can emails be changed?
'modGroups' => false, // can groups be changed?
'getUsers' => false, // can a (filtered) list of users be retrieved?
'getUsers' => true, // can a (filtered) list of users be retrieved?
'getUserCount'=> false, // can the number of users be retrieved?
'getGroups' => false, // can a list of available groups be retrieved?
'external' => true, // does the module do external auth checking?
'getGroups' => true, // can a list of available groups be retrieved?
'external' => true, // does the module do external auth checking?
'logout' => true, // can the user logout again? (eg. not possible with HTTP auth)
);
}