my routes file has the following lines

map.resources :players, :has_many => :matches
map.resources :tourney, :has_many => :matches

now I want to be able to display all the matches played by a player and
also all the matches played in the entire tournament. I have two routes
available

tourney_matches GET  /tourney/:tourney_id/matches
{:controller=>"matches", :action=>"index"}

player_matches GET  /player/:player_id/matches  {:controller=>"matches",
:action=>"index"}

both these paths call the same action in the matches controller, so how
is this supposed to work?
-- 
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 [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to