Files
fizzy/app/models/comment/eventable.rb
T
2025-04-24 13:45:48 +02:00

19 lines
316 B
Ruby

module Comment::Eventable
extend ActiveSupport::Concern
include ::Eventable
included do
after_create_commit :track_creation
end
def event_was_created(event)
card.touch(:last_active_at)
end
private
def track_creation
track_event("created", collection: card.collection)
end
end