8 lines
190 B
Ruby
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
|