From 656c2c7812114502067bc87684bd74f312821201 Mon Sep 17 00:00:00 2001 From: Eliseu Amaro Date: Sun, 24 Oct 2021 15:31:28 +0100 Subject: [PATCH] [SECURITY][Authenticator] fix wrong route id on after login redirection --- src/Security/Authenticator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/Authenticator.php b/src/Security/Authenticator.php index fb713029cb..be8d437590 100644 --- a/src/Security/Authenticator.php +++ b/src/Security/Authenticator.php @@ -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()