Replaced env() with config() to check environment variables

Made the app.php description for 'REQUIRE_SAML' a bit more... descriptive.
This commit is contained in:
Alex Janes 2021-12-16 16:56:39 -05:00
parent a6116a1b15
commit 6898119891
2 changed files with 7 additions and 5 deletions

View file

@ -76,7 +76,7 @@ class LoginController extends Controller
//If the environment is set to ALWAYS require SAML, go straight to the SAML route. //If the environment is set to ALWAYS require SAML, go straight to the SAML route.
//We don't need to check other settings, as this should override those. //We don't need to check other settings, as this should override those.
if((env("REQUIRE_SAML", false))) if(config('REQUIRE_SAML'))
{ {
return redirect()->route('saml.login'); return redirect()->route('saml.login');
} }
@ -209,7 +209,7 @@ class LoginController extends Controller
public function login(Request $request) public function login(Request $request)
{ {
//If the environment is set to ALWAYS require SAML, return access denied //If the environment is set to ALWAYS require SAML, return access denied
if((env("REQUIRE_SAML", false))) if(config('REQUIRE_SAML'))
{ {
return view('errors.403'); return view('errors.403');
} }

View file

@ -255,9 +255,11 @@ return [
| Require SAML Login | Require SAML Login
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Disable the ability to login via form login, and require all logins to | Disable the ability to login via form login, and disables the 'nosaml'
| process via SAML login. (If you are not using SAML, this option should | workaround. It requires all logins to process via SAML login.
| be left alone.) | (This is for high security setups. If your SAML configuration is not
| working, this option should be set to false. This option is not needed
| to successfully configure SAML authentication.)
| |
*/ */