Files
fizzy/app/models/bubble/commentable.rb
T
2024-10-16 16:41:11 -06:00

14 lines
289 B
Ruby

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