Say I have resource comment that belongs to resources post and blog. I know that to nest comment into say, post would look like this:
map.resources :posts do |post| post.resources :comments end
However, if I wanted :comments to also belong to :blogs, how would I do that?