Files
fizzy/app/models/bubble/commentable.rb
T
2024-10-24 11:22:23 -06:00

9 lines
241 B
Ruby

module Bubble::Commentable
extend ActiveSupport::Concern
included do
has_many :comments # destroyed via thread_entry
scope :ordered_by_comments, -> { left_joins(:comments).group(:id).order("COUNT(comments.id) DESC") }
end
end