diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-06 18:07:30 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-06 18:07:30 -0400 |
commit | 41c334bf2986c890f3d6032002d83e37f0f79df8 (patch) | |
tree | 4e29c2a2fb208bb5a3a2464a8e84048fea5b0b0d /doc/config.markdown | |
parent | b0994ba68e7cbaa077d81006fb0f25bcbd049353 (diff) |
Add LDAP group sync
Diffstat (limited to 'doc/config.markdown')
-rw-r--r-- | doc/config.markdown | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/config.markdown b/doc/config.markdown index b5c3ce0d..5473ef9b 100644 --- a/doc/config.markdown +++ b/doc/config.markdown @@ -132,6 +132,17 @@ define('LDAP_ACCOUNT_EMAIL', 'mail'); // Example for OpenLDAP: 'uid' define('LDAP_ACCOUNT_ID', 'samaccountname'); +// LDAP Attribute for group membership +define('LDAP_ACCOUNT_MEMBEROF', 'memberof'); + +// DN for administrators +// Example: CN=Kanboard Admins,CN=Users,DC=kanboard,DC=local +define('LDAP_GROUP_ADMIN_DN', ''); + +// DN for project administrators +// Example: CN=Kanboard Project Admins,CN=Users,DC=kanboard,DC=local +define('LDAP_GROUP_PROJECT_ADMIN_DN', ''); + // By default Kanboard lowercase the ldap username to avoid duplicate users (the database is case sensitive) // Set to true if you want to preserve the case define('LDAP_USERNAME_CASE_SENSITIVE', false); |