9 lines
191 B
Ruby
9 lines
191 B
Ruby
module Linkable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_many :links, as: :linkable, dependent: :destroy
|
|
accepts_nested_attributes_for :links, allow_destroy: true
|
|
end
|
|
end
|