I want to have a form_for @user, but post to a custom action in the users controller.
form_for @user
How can I do this?
The following works for me:
form_for @user, :url => {:action => "YourActionName"}