diff options
author | Francois Ferrand <thetypz@gmail.com> | 2015-01-16 17:08:48 +0100 |
---|---|---|
committer | Francois Ferrand <thetypz@gmail.com> | 2015-01-16 17:13:36 +0100 |
commit | 969d60ab416c075db27f7a0247f0c48ab519afa6 (patch) | |
tree | 5612bf783866291a24f7c5af913cbd584f7b7137 /app/constants.php | |
parent | fd22b955751075e4a69df9c1d24995f15b991be7 (diff) |
Add Json API to create LDAP user.
This allows setting up permissions before the LDAP users actually connect
to Kanboard, and even importing the permissions from other tools.
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php index a8d8f56e..f0384d30 100644 --- a/app/constants.php +++ b/app/constants.php @@ -34,6 +34,7 @@ defined('LDAP_ACCOUNT_BASE') or define('LDAP_ACCOUNT_BASE', ''); defined('LDAP_USER_PATTERN') or define('LDAP_USER_PATTERN', ''); defined('LDAP_ACCOUNT_FULLNAME') or define('LDAP_ACCOUNT_FULLNAME', 'displayname'); defined('LDAP_ACCOUNT_EMAIL') or define('LDAP_ACCOUNT_EMAIL', 'mail'); +defined('LDAP_ACCOUNT_ID') or define('LDAP_ACCOUNT_ID', ''); // Google authentication defined('GOOGLE_AUTH') or define('GOOGLE_AUTH', false); |