Files
fizzy/app/models/bubble/commentable.rb
T
2024-11-15 19:48:53 -06:00

18 lines
299 B
Ruby

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