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.
You can use a redirect to that action :
redirect_to your_controller_action_url
More on : Rails Guide
To just render the new action :
redirect_to your_controller_action_url and return