Displaying 1 result from an estimated 1 matches for "rental_url".
Did you mean:
rentals_url
2006 Dec 17
2
Route generation and clash prevention
...for the example:
map.resources :movies do |movies|
movies.resources :rentals
end
map.resources :rentals do | rentals|
rentals.resources :customers
end
map.resources :customers do |customers|
customers.resources :rentals
end
These map blocks introduce ambiguity about what rental_url(1,5) should
generate - /movies/1/rentals/5 or /customers/1/movies/5. The error
message pointing this out sucks (rentals_url failed to generate from
{:controller=>"rentals", :action=>"index"}, expected:
{:controller=>"rentals", :action=>"index"}, d...