Module: Activity::Actable::ClassMethods
- Defined in:
- lib/activity.rb
Instance Method Summary collapse
Instance Method Details
#actable ⇒ Object
42 43 44 45 46 47 |
# File 'lib/activity.rb', line 42 def actable has_many :acts, :class_name => 'Action', :as => :actor, :dependent => :destroy, :order => 'created_at ASC' # after_create :action_after_create include Activity::Actable::InstanceMethods extend Activity::Actable::SingletonMethods end |