Today I realised I'd gotten a little carried away with nested resources:
resources :organisations do
resources :studies do
resources :settings
end
end
The Rails guidelines (and my own thoughts) suggest that you shouldn't nest more than 1 level deep, so I refactored to this:
resources :organisations do
resources :studies
end
resources :studies do
resources :settings
end
Does anyone know a cleaner / more concise way to declare the above routes? Google gave me a lot of Rails 2-specific stuff.
Many thanks!