Skip to content
Snippets Groups Projects
with_menu_item_target.rb 239 B
Newer Older
pabois's avatar
wip
pabois committed
module WithMenuItemTarget
  extend ActiveSupport::Concern

  included do
    has_many   :menu_items,
               as: :about,
               class_name: 'Communication::Website::Menu::Item',
               dependent: :destroy

  end
end