bug fix and formatting fix

This commit is contained in:
Alex Janes 2021-12-16 19:04:37 -05:00
parent 6898119891
commit d99db5c63b

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