[SECURITY][Authenticator] fix wrong route id on after login redirection

This commit is contained in:
Eliseu Amaro 2021-10-24 15:31:28 +01:00 committed by Diogo Peralta Cordeiro
parent 60b15ea79d
commit 656c2c7812
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ class Authenticator extends AbstractFormLoginAuthenticator
return new RedirectResponse($targetPath);
}
return new RedirectResponse(Router::url('/'));
return new RedirectResponse(Router::url('main_all'));
}
protected function getLoginUrl()