From 50bcfb509305386233567e6742be8992f0e583c0 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Wed, 4 Apr 2018 18:37:52 +0200 Subject: [PATCH] Move always_authenticate config to the setting.php file --- config/security.php | 11 ----------- config/setting.php | 12 ++++++++++++ 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/config/security.php b/config/security.php index c1789893..724338af 100644 --- a/config/security.php +++ b/config/security.php @@ -22,15 +22,4 @@ return [ */ 'evil' => ['(? false, - ]; diff --git a/config/setting.php b/config/setting.php index 4f58d404..c9615c35 100644 --- a/config/setting.php +++ b/config/setting.php @@ -111,4 +111,16 @@ return [ */ 'only_disrupted_days' => false, + + /* + |-------------------------------------------------------------------------- + | Always authenticate + |-------------------------------------------------------------------------- + | + | Whether to lock down Cachet and only allow viewing pages + | when authenticated. + | + */ + + 'always_authenticate' => false, ];