Files
fizzy/app/models/bubble/commentable.rb
T
2024-11-19 13:27:09 -06:00

18 lines
297 B
Ruby

module Bubble::Commentable
extend ActiveSupport::Concern
included do
scope :ordered_by_comments, -> { order comments_count: :desc }
end
def comment_created
increment! :comments_count
rescore
end
def comment_destroyed
decrement! :comments_count
rescore
end
end