Tagged Questions
0
votes
1answer
517 views
Grails Web Flow: Redirect to the webflow from another controller action?
Here's what I think I want to do:
class MyController {
def goToWizard = {
if (params.option1)
redirect actionName:'wizard1', params:params
if (params.option2)
...