I am trying to redirect a user once a controller save action has been made
I am using this which does not seem to work:
render(action:"index", controller:"public" )
I am wanting to go to the index action in the public controller. All i get back in the browser is this:
['action':'index', 'controller':'public']
what am I doing wrong?
Thanks
I figured this one out I needed to use redirect instead of render.