Hi!
I have a problem related to polymorphic associations.
Currently in my routes i define the following:
map.resources :articles do |articles|
articles.resources :comments
end
map.resources :posts do |posts|
posts.resources :comments
end
I have basically posts and articles models which relate to the
polymorphic model comment.
Routes are generated as I expect to, but the problem resides in the
comments_controller, since in this controller I'm not able to figure out
if I'm creating a comment for a post or for an article.
Is there a (possibly clean) way to solve this?
Thanks
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---