Displaying 1 result from an estimated 1 matches for "act_as_commentable".
Did you mean:
acts_as_commentable
2007 Sep 23
9
Code reviews: my dumb use of acts_as_commentable (newbie)
...heroes here yesterday I beat my way into a
working solution to adding comments to one or more models in my
application using acts_as_comentable. Great plugin, but my
implementation is lame. I need enlightenment.
I have users who log in. For several views I want to let them add
comments. Enter act_as_commentable which does just this -- it''s
polymorphic, so you just tell your model to act_as_commentable and it
obeys. However...
Say I have a model, view and controller of my reviews of movies, which
I''ll call Reviews. I write a reviews and I want to let my loyal users
add comments.
What...