12 lines
183 B
Ruby
12 lines
183 B
Ruby
module Bubble::Commentable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_many :comments, dependent: :destroy
|
|
end
|
|
|
|
def comment!(body)
|
|
comments.create! body:
|
|
end
|
|
end
|