Sha256: 3651cd07e66bc7d878a01d5c5449231c4f20feea134e05cc6fe65f063c477677
Contents?: true
Size: 753 Bytes
Versions: 40
Compression:
Stored size: 753 Bytes
Contents
# frozen_string_literal: true module Decidim # It represents a meeting of the conference class ConferenceMeeting < Decidim::Meetings::Meeting translatable_fields(*Decidim::Meetings::Meeting.translatable_fields_list) 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, class_name: "Decidim::Conferences::ConferenceMeetingRegistrationType" has_many :registration_types, through: :conference_meeting_registration_types, foreign_key: "registration_type_id", class_name: "Decidim::Conferences::RegistrationType" end end
Version data entries
40 entries across 40 versions & 1 rubygems