I'd like to add 'comments' to activities. So each PublicActivity::Activity could have many comments from different users (Comment belongs_to 'activity').
Is this currently supported by PA gem or should I do something like the method mentioned in earlier topics, eg. extending the PA class with class_eval block ?
Scenarios to consider:
PublicActivity::Activity.class_eval do
has_many :comments
# or acts_as_commentable
end
or create a new Model that inherits from PublicActivity::Activity, defined associations in the model but also tell it to use the 'activities' table?
class Activity < PublicActivity::Activity
self.table_name = "activities"
has_many :comments
end
?