Change login route

This commit is contained in:
touffies
2013-10-28 12:59:17 +01:00
parent 0b927f8f2e
commit 54e946ce82

View File

@@ -56,7 +56,7 @@ class BaseFrontController extends BaseController
public function checkAuth()
{
if ($this->getSecurityContext()->hasCustomerUser() === false) {
$this->redirectToRoute('default', array('view'=>'login'));
$this->redirectToRoute('customer.login.process');
}
}