Public view for suggested actions as well as resources has been completelly redesigned. Private side for this feature has been adapted as well in order to meet the requirements.
10 lines
192 B
Ruby
10 lines
192 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
|
|
|