Displaying 1 result from an estimated 1 matches for "client_properti".
Did you mean:
client_properties
2007 Sep 04
1
Routing error with nested resources
Hi -- I have a routes.rb file with the following in it:
<CODE>
map.resource :admin do |admin|
admin.resources :users
admin.resources :clients do |client|
client.resources :client_properties
end
admin.resources :areas
admin.resources :properties
end
</CODE>
My problem is when I try to access the show or edit actions of the
client_properties resource.
The function client_property_path( client, property ) returns the
correct url -- "/clients/1/client_propertie...