I can't seem to figure out how to port this particular route from Rails 2 to 3:
map.resources :webservices, :new => { :push_data => :post, :reset_url => :post }
The relevant pastie is here: http://pastie.org/4022761
I can't seem to figure out how to port this particular route from Rails 2 to 3:
map.resources :webservices, :new => { :push_data => :post, :reset_url => :post }
The relevant pastie is here: http://pastie.org/4022761
Copyright © 2021 Jogjafile Inc.
Ok, I see what you are trying to do.
You need to update your routes.rb file like so:
I did this to a model I have in a project called Notes, when I called rake routes, it gave me this:
This should fix your route issue you were having. Let me know how that works out for you.