Sha256: 76442c79e789210f644f0292999197e18cf7cc87cf168cdd8b2b34e3c63df0e2
Contents?: true
Size: 603 Bytes
Versions: 10
Compression:
Stored size: 603 Bytes
Contents
# frozen_string_literal: true module Decidim # It represents a meeting of the conference class ConferenceMeeting < Decidim::Meetings::Meeting has_many :conference_speaker_conference_meetings, dependent: :destroy has_many :conference_speakers, through: :conference_speaker_conference_meetings, class_name: "Decidim::ConferenceSpeaker" has_many :conference_meeting_registration_types, dependent: :destroy has_many :registration_types, through: :conference_meeting_registration_types, foreign_key: "registration_type_id", class_name: "Decidim::Conferences::RegistrationType" end end
Version data entries
10 entries across 10 versions & 1 rubygems