On Dec 1, 11:28 am, Vogon Primo <li...@ruby-forum.com> wrote:
> 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 tohttp://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?
>
It's also doing weird stuff because it hasn't picked a project_id from
the url but it has picked an id. Do you have any other routes that
might be matching this url instead of the ones that you intended to be
used?

Fred

> --
> Posted viahttp://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