Files
fizzy/app/models/thread_entry.rb
T
2024-10-24 11:28:59 -06:00

8 lines
251 B
Ruby

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