Files
fizzy/app/models/thread_entry.rb
T
2024-10-23 14:10:04 -06:00

8 lines
190 B
Ruby

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