Rename config var auth_redirect_handler -> auth_logout_handler (#13329)

This change addresses a typo introduced in the refactor of
d4325a2e9e
which makes the variable name inconsistent with the documentation.
This commit is contained in:
Nash Kaminski
2021-10-04 15:15:06 -05:00
committed by GitHub
parent 878e95ed40
commit 3a0d4e60f1

View File

@@ -59,6 +59,6 @@ class LoginController extends Controller
protected function loggedOut(Request $request)
{
return redirect(Config::get('auth_redirect_handler', $this->redirectTo));
return redirect(Config::get('auth_logout_handler', $this->redirectTo));
}
}