8 lines
127 B
Ruby
8 lines
127 B
Ruby
|
|
module Notable
|
||
|
|
extend ActiveSupport::Concern
|
||
|
|
|
||
|
|
included do
|
||
|
|
has_many :notes, as: :notable, dependent: :destroy
|
||
|
|
end
|
||
|
|
end
|