Files
fizzy/app/models/thread_entry.rb
T
Jose Farias ae497aae85 Clear up dependency destruction chain
Buckets destroy their bubbles, which destroy their thread entries, which destroy their threadables, which is how comments end up destroyed, and then rollups end up deleting their events
2024-10-23 14:51:12 -06:00

8 lines
211 B
Ruby

class ThreadEntry < ApplicationRecord
belongs_to :bubble
delegated_type :threadable, types: %w[ Comment Rollup ], dependent: :destroy
scope :chronologically, -> { order created_at: :asc, id: :desc }
end