Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation suggests to use grails.plugin.springsecurity.ui.forgotPassword.postResetUrl in order to set the URL after a password reset. For example: ---- grails.plugin.springsecurity.ui.forgotPassword.postResetUrl = '/reset' ---- In RegisterController the registerPostResetUrl variable looks for conf.ui.register.postResetUrl which should be conf.ui.forgotPassword.postResetUrl. https://github.com/grails-plugins/grails-spring-security-ui/blob/master/grails-app/controllers/grails/plugin/springsecurity/ui/RegisterController.groovy#L212 Updated `RegisterController.registerPostResetUrl` to be: ``` registerPostResetUrl = conf.ui.forgotPassword.postResetUrl ?: '' ```
- Loading branch information