X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/9b271e559fd0ca98319cf5ba0d7c26916511b62a..refs/pull/3630/head:/app/Http/Middleware/Authenticate.php diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index b9b5545f2..a32029112 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -16,31 +16,10 @@ class Authenticate if ($request->ajax()) { return response('Unauthorized.', 401); } + return redirect()->guest(url('/login')); } return $next($request); } - - /** - * Provide an error response for when the current user's email is not confirmed - * in a system which requires it. - */ - protected function emailConfirmationErrorResponse(Request $request) - { - if ($request->wantsJson()) { - return response()->json([ - 'error' => [ - 'code' => 401, - 'message' => trans('errors.email_confirmation_awaiting'), - ], - ], 401); - } - - if (session()->get('sent-email-confirmation') === true) { - return redirect('/register/confirm'); - } - - return redirect('/register/confirm/awaiting'); - } }