views:

29

answers:

1

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 ?

+1  A: 

You can combine the two:

redirect url: createLink(mapping: 'register')
Burt Beckwith
Of course.Thanks
fabien7474