Files
fizzy/app/models/bubble/commentable.rb
T
2024-10-24 10:38:59 -06:00

10 lines
213 B
Ruby

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