Not needed anymore

This commit is contained in:
Jorge Manrubia
2025-04-26 09:13:24 +02:00
parent 76fc4aeb0e
commit 82885e453d
-7
View File
@@ -11,7 +11,6 @@ class Comment < ApplicationRecord
scope :belonging_to_card, ->(card) { joins(:message).where(messages: { card_id: card.id }) }
after_create_commit :watch_card_by_creator
after_destroy_commit :cleanup_events
delegate :watch_by, to: :card
@@ -23,10 +22,4 @@ class Comment < ApplicationRecord
def watch_card_by_creator
card.watch_by creator
end
# FIXME: This isn't right. We need to introduce an eventable polymorphic association for this.
def cleanup_events
# Delete events that reference directly in particulars
Event.where(particulars: { comment_id: id }).destroy_all
end
end