summaryrefslogtreecommitdiff
path: root/app/constants.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-08-01 12:46:55 -0400
committerFrederic Guillot <fred@kanboard.net>2015-08-01 12:46:55 -0400
commitb377b57516ce1193b4581be8b531cd0193f58d7d (patch)
treefaff50e1ca948ee195ae13a0cbdc2787871fe375 /app/constants.php
parentfb448187078ace6574f145c39c319c38a287c84b (diff)
Add config parameter to disable/enable RememberMe authentication
Diffstat (limited to 'app/constants.php')
-rw-r--r--app/constants.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php
index e73e7b1a..61dfa10a 100644
--- a/app/constants.php
+++ b/app/constants.php
@@ -53,6 +53,9 @@ defined('REVERSE_PROXY_USER_HEADER') or define('REVERSE_PROXY_USER_HEADER', 'REM
defined('REVERSE_PROXY_DEFAULT_ADMIN') or define('REVERSE_PROXY_DEFAULT_ADMIN', '');
defined('REVERSE_PROXY_DEFAULT_DOMAIN') or define('REVERSE_PROXY_DEFAULT_DOMAIN', '');
+// Remember me authentication
+defined('REMEMBER_ME_AUTH') or define('REMEMBER_ME_AUTH', true);
+
// Mail configuration
defined('MAIL_FROM') or define('MAIL_FROM', 'notifications@kanboard.local');
defined('MAIL_TRANSPORT') or define('MAIL_TRANSPORT', 'mail');