Browse Source

Move the full response logic into the unauthenticated method

Joseph Silber 8 years ago
parent
commit
d26314de20
1 changed files with 5 additions and 1 deletions
  1. 5 1
      app/Exceptions/Handler.php

+ 5 - 1
app/Exceptions/Handler.php

@@ -34,7 +34,11 @@ class Handler extends ExceptionHandler
      */
     protected function unauthenticated($request, AuthenticationException $e)
     {
-        parent::unauthenticated($request, $e);
+        if ($request->ajax() || $request->wantsJson()) {
+            return response('Unauthorized.', 401);
+        } else {
+            return redirect()->guest('login');
+        }
     }
 
     /**