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 ?