I'm wondering how or if it is possible to nest a resource more than one level.
routes.rb
map.namespace :blog do |blog| blog.resources :channels, :has_many => :articles end
For example, how could I say that would like each article to have nested comments.
map.namespace :blog do |blog| blog.resources :channels, :has_many => :articles ?? :has_many :comments end
I'm thinking the url would look something like: /blog/channel/1/article/1/comment/1
Thanks,
resident moron