Fix missing URLs.

This commit is contained in:
Paulo Gustavo Veiga 2023-11-20 07:41:51 -08:00
parent 55c104cfbe
commit 9668823c31
1 changed files with 12 additions and 0 deletions

View File

@ -53,4 +53,16 @@ public class MvcUsersController {
return new ModelAndView("reactInclude");
}
@RequestMapping(value = "registration-success", method = RequestMethod.GET)
@PreAuthorize("permitAll()")
public ModelAndView showRegistrationSuccess() {
return new ModelAndView("reactInclude");
}
@RequestMapping(value = "forgot-password-success", method = RequestMethod.GET)
@PreAuthorize("permitAll()")
public ModelAndView showResetPasswordSuccess() {
return new ModelAndView("reactInclude");
}
}