mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
Fix LDAP
Le LDAP fonctionne mais il faudrait définir un utilisateur admin autre que celui par défaut dès l'install
This commit is contained in:
parent
1aec759209
commit
503447605c
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ define('LDAP_ACCOUNT_BASE', 'ou=users,dc=yunohost,dc=org');
|
||||||
// LDAP query pattern to use when searching for a user account
|
// LDAP query pattern to use when searching for a user account
|
||||||
// Example for ActiveDirectory: '(&(objectClass=user)(sAMAccountName=%s))'
|
// Example for ActiveDirectory: '(&(objectClass=user)(sAMAccountName=%s))'
|
||||||
// Example for OpenLDAP: 'uid=%s'
|
// Example for OpenLDAP: 'uid=%s'
|
||||||
define('LDAP_USER_PATTERN', 'objectClass=uid=%s');
|
define('LDAP_USER_PATTERN', 'uid=%s');
|
||||||
|
|
||||||
// Name of an attribute of the user account object which should be used as the full name of the user.
|
// Name of an attribute of the user account object which should be used as the full name of the user.
|
||||||
define('LDAP_ACCOUNT_FULLNAME', 'displayName');
|
define('LDAP_ACCOUNT_FULLNAME', 'displayName');
|
||||||
|
|
Loading…
Reference in a new issue