I need to call the create action in controller A, from controller B.
The reason is that I need to redirect differently when I\'m calling from controller B.
To use one controller from another, do this:
def action_that_calls_one_from_another_controller controller_you_want = ControllerYouWant.new controller_you_want.request = request controller_you_want.response = response controller_you_want.action_you_want end