Skip to content
Snippets Groups Projects
with_communication.rb 282 B
module University::WithCommunication
  extend ActiveSupport::Concern

  included do
    has_many :communication_websites, class_name: 'Communication::Website', dependent: :destroy
    has_many :communication_blocks, class_name: 'Communication::Block', dependent: :destroy
  end
end