app/models/concerns/commentable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Commentable
  extend ActiveSupport::Concern

  included do
    has_many :comments, as: :content, dependent: :destroy
  end
end