[bug] Auth filter still redirects to /login not auth/login

if you use make:auth it defaults to auth/login for a path. But if you look at the Auth filter it defaults to /login as a path.
This commit is contained in:
Alfred Nutile 2014-09-07 09:20:07 -04:00
parent 2fb780b63f
commit 5eaaadc204
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public function filter(Route $route, Request $request)
}
else
{
return Redirect::guest('login');
return Redirect::guest('auth/login');
}
}
}