Grails 1..3.7
In regular controller actions I can do the following:
def someAction = { OneCommand oneCmd, TwoCommand twoCmd ->
}
However, in a webflow action I have the equivillent:
def someFlow = {
someAction {
on("something") { OneCommand oneCmd, TwoCommand twoCmd ->
}
}
}
which doesn't bind the params to either object. If I remove one of them, it binds to the one left. Is this a bug or expected behavior?