You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
class Conference < ActiveRecord::Base
|
|
|
|
mount_uploader :cover, CoverUploader
|
|
|
|
mount_uploader :poster, PosterUploader
|
|
|
|
|
|
|
|
belongs_to :conference_type
|
|
|
|
|
|
|
|
has_many :conference_host_organizations, :dependent => :destroy
|
|
|
|
has_many :organizations, :through => :conference_host_organizations
|
|
|
|
|
|
|
|
has_many :conference_registration_form_fields, :order => 'position ASC', :dependent => :destroy#, :class_name => '::ConferenceRegistrationFormField'
|
|
|
|
has_many :registration_form_fields, :through => :conference_registration_form_fields
|
|
|
|
|
|
|
|
has_many :workshops
|
|
|
|
|
|
|
|
accepts_nested_attributes_for :conference_host_organizations, :reject_if => proc {|u| u[:organization_id].blank?}, :allow_destroy => true
|
|
|
|
|
|
|
|
def to_param
|
|
|
|
slug
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|