Browse Source

Merge pull request #2399 from JosephSilber/auth-ajax-401

Auth should respond with a 401 to AJAX requests
Taylor Otwell 11 years ago
parent
commit
d286d94122
1 changed files with 6 additions and 1 deletions
  1. 6 1
      app/filters.php

+ 6 - 1
app/filters.php

@@ -35,7 +35,12 @@ App::after(function($request, $response)
 
 
 Route::filter('auth', function()
 Route::filter('auth', function()
 {
 {
-	if (Auth::guest()) return Redirect::guest('login');
+	if (Auth::guest())
+	{
+		if (Request::ajax()) App::abort(401);
+
+		return Redirect::guest('login');
+	}
 });
 });