Hi! Here is my Rails 3 nested routes structure for PROJECT
resources :projects do
resources :notes, :photos
collection do
get 'yourproject', 'newjs'
end
end
This works great for things like
/projects
/projects/1
/projects/1/notes/
/projects/1/notes/3
what isn't working is:
/projects/1/notes/newjs
Anyone Rails 3 nested resource experts out there? thanks