Browse Source

Auth AJAX 401 response

Joseph Silber 11 years ago
parent
commit
cf36bb47c2
1 changed files with 9 additions and 1 deletions
  1. 9 1
      app/filters.php

+ 9 - 1
app/filters.php

@@ -35,7 +35,15 @@ 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())
+		{
+			return Response::make('', 401, array('HTTP/1.1 401 Unauthorized'));
+		}
+
+		return Redirect::guest('login');
+	}
 });
 });