I have a URL mapping as below:
static mappings = {
        name register: "/register" {
            controller = "account"
            action = "createuser"
        }
}
and I want to redirect using this mapping from a controller with something like:
redirect mapping:'register'
Unfortunately, unlike createLink tag lib, it seems that redirect does not accept mapping as input parameter.
So my question is : How can I use my named URL mapping for redirection ?
You can combine the two:
redirect url: createLink(mapping: 'register')
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With