This is a snippet of my routes.rb file
map.resources :users do |users|
    users.resources :blogs do |blogs|
      blogs.resources :articles do |articles|
        articles.resources :comments
      end
      blogs.resources :comments
    end
  end
Just wondering if it is possible to have the comment model in 2
different places.  From the snippet code, a blog can have comments.
it is also possible for articles to have comments as well.  I''m just
wondering if there is an easy way to handle this since I will have a
very complicated comments_controller.  The comments_controller will
have to determine where it is comming from, either through users/blogs/
articles/comments or user/blog/comment.
Let me know if there is an easier way of doing this.
Thank you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---