diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | app/Model/Authentication.php | 4 | ||||
-rw-r--r-- | app/Template/auth/index.php | 4 | ||||
-rw-r--r-- | app/constants.php | 3 | ||||
-rw-r--r-- | config.default.php | 3 | ||||
-rw-r--r-- | docs/config.markdown | 8 |
6 files changed, 20 insertions, 3 deletions
@@ -7,6 +7,7 @@ New features: * Add new api procedures: getDefaultTaskColor(), getDefaultTaskColors() and getColorList() * Add user api access * Add config parameter to define session duration +* Add config parameter to disable/enable RememberMe authentication Bug fixes: diff --git a/app/Model/Authentication.php b/app/Model/Authentication.php index f09312bd..93a463f1 100644 --- a/app/Model/Authentication.php +++ b/app/Model/Authentication.php @@ -54,7 +54,7 @@ class Authentication extends Base } // We try first with the RememberMe cookie - if ($this->backend('rememberMe')->authenticate()) { + if (REMEMBER_ME_AUTH && $this->backend('rememberMe')->authenticate()) { return true; } @@ -193,7 +193,7 @@ class Authentication extends Base */ private function createRememberMeSession(array $values) { - if (! empty($values['remember_me'])) { + if (REMEMBER_ME_AUTH && ! empty($values['remember_me'])) { $credentials = $this->backend('rememberMe') ->create($this->userSession->getId(), Request::getIpAddress(), Request::getUserAgent()); diff --git a/app/Template/auth/index.php b/app/Template/auth/index.php index efe95185..1ad1b9a4 100644 --- a/app/Template/auth/index.php +++ b/app/Template/auth/index.php @@ -21,7 +21,9 @@ <?= $this->form->text('captcha', $values, $errors, array('required')) ?> <?php endif ?> - <?= $this->form->checkbox('remember_me', t('Remember Me'), 1, true) ?><br/> + <?php if (REMEMBER_ME_AUTH): ?> + <?= $this->form->checkbox('remember_me', t('Remember Me'), 1, true) ?><br/> + <?php endif ?> <div class="form-actions"> <input type="submit" value="<?= t('Sign in') ?>" class="btn btn-blue"/> 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'); diff --git a/config.default.php b/config.default.php index 2ec7d674..9c1a833d 100644 --- a/config.default.php +++ b/config.default.php @@ -142,6 +142,9 @@ define('REVERSE_PROXY_DEFAULT_ADMIN', ''); // Default domain to use for setting the email address define('REVERSE_PROXY_DEFAULT_DOMAIN', ''); +// Enable/disable remember me authentication +define('REMEMBER_ME_AUTH', true); + // Enable or disable "Strict-Transport-Security" HTTP header define('ENABLE_HSTS', true); diff --git a/docs/config.markdown b/docs/config.markdown index 5fb6bb18..b5c3ce0d 100644 --- a/docs/config.markdown +++ b/docs/config.markdown @@ -185,6 +185,14 @@ define('REVERSE_PROXY_DEFAULT_ADMIN', ''); define('REVERSE_PROXY_DEFAULT_DOMAIN', ''); ``` +RememberMe Authentication settings +---------------------------------- + +```php +// Enable/disable remember me authentication +define('REMEMBER_ME_AUTH', true); +``` + Secure HTTP headers settings ---------------------------- |