Sha256: d6eaf080aefdb955bc38eda349adc2b5ce97ea9b5a5b8f7879aa54aeaed8319c
Contents?: true
Size: 641 Bytes
Versions: 21
Compression:
Stored size: 641 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, foreign_key: "conference_meeting_id", 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
21 entries across 21 versions & 1 rubygems