Adding custom routes to rails

1
2
3
4
map.resources :notes, :member => { :symbol => :get }
 
# or you could use :collection => { :symbol => :get, :post, :put, :etc }
# run "rake routes | mate" in terminal to view your routes (with textmate)

Comments