From 8c4771e4f99a20efe0549ab50e5f81b1fb6040e6 Mon Sep 17 00:00:00 2001 From: Jannis Portmann Date: Thu, 29 Apr 2021 23:30:34 +0200 Subject: [PATCH] complete registration process --- src/Controller/RegistrationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/RegistrationController.php b/src/Controller/RegistrationController.php index b58a402..d28928a 100644 --- a/src/Controller/RegistrationController.php +++ b/src/Controller/RegistrationController.php @@ -96,6 +96,6 @@ class RegistrationController extends AbstractController // @TODO Change the redirect on success and handle or remove the flash message in your templates $this->addFlash('success', 'Your email address has been verified.'); - return $this->redirectToRoute('user'); + return $this->redirectToRoute('user_page'); } }