Re: [Rails] Re: Re: Rails 3 Routing: Namespace'd Controllers?

2010-03-17 Thread Conrad Taylor
Sent from my iPhone On Mar 17, 2010, at 5:43 PM, Stefan Buhr wrote: Conrad Taylor wrote: namespace :admin do resources :settings do get :some_action, :on => :member # member route get :some_other_action, :on => :collection # collection route end end Yes, someone *could* explicitly define

[Rails] Re: Re: Rails 3 Routing: Namespace'd Controllers?

2010-03-17 Thread Stefan Buhr
Conrad Taylor wrote: > namespace :admin do resources :settings do > get :some_action, :on => :member # member route > get :some_other_action, :on => :collection # collection route > end end Yes, someone *could* explicitly define all actions in the routes.rb, but that is exactly what I do not want