Hi all,

In a sample project, I have a nested resource called ticket, and parent
resource called project.

rake routes:
...
project_tickets GET    /projects/:project_id/tickets(.:format)
                       {:action=>"index", :controller=>"tickets"}

                POST   /projects/:project_id/tickets(.:format)
                      {:action=>"create", :controller=>"tickets"}
...

but when I go to http://127.0.0.1:3000/projects/7/tickets/ I have this
routing error:

No route matches {:action=>"show", :controller=>"tickets",
                  :project_id=>nil, :id=>#<Project id: 7,
                   name: "bla...bla", created_at: "2011-11-29 14:39:51",
                   updated_at: "2011-11-29 14:39:51">}

It invokes the show action and not the index action. Why?

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to