I have a controller route defined as follows:
resources :watched, :controller => "watched", :only => :index
When I run rake routes, I get the following:
watched_index GET /watched(.:format) {:action=>"index", :controller=>"watched"}
For some reason, neither watched_path or watcheds_path seems to be defined in my views. Any ideas?
According to your output from rake routes, the path you should be using is either of the following: