In my views/users/edit.html.erb, I have the following:
<%= form_for @user do |f| %>
.........
<div class="controls"><%= submit_tag "Update User Info", :class => "submit_button" %></div>
<% end >
When that button is clicked, it's sent to the controller's update method. How do I get it to go to another controller method? I looked up the documentation for ActionView, and nothing jumped at me. Suggestions?