Commit 5eaaadc2 authored by Alfred Nutile's avatar Alfred Nutile

[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.
parent 2fb780b6
......@@ -23,7 +23,7 @@ class AuthFilter {
}
else
{
return Redirect::guest('login');
return Redirect::guest('auth/login');
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment