What are the equivalent matching routes created from the using a resources route?
Please be exact.
For example what would the equivalent matches for:
resources :users
There should be 7 different match routes matching the 7 actions – index, new, create, edit, update, show, and delete. Here is one of them:
Http Method: New (Get Action)
match "users/new", :to => "users#new", :via => :get, :as => :new_user
I have a few more but I would like to confirm what I have with the community. Thanks!
I think you wanted to know what the code should be in the routing file so…