Class: EffectiveEventRegistrantsDatatable

Inherits:
Effective::Datatable
  • Object
show all
Defined in:
app/datatables/effective_event_registrants_datatable.rb

Overview

Used on the Event Registrations tickets step

Instance Method Summary collapse

Instance Method Details

#eventObject



48
49
50
51
52
# File 'app/datatables/effective_event_registrants_datatable.rb', line 48

def event
  @event ||= if attributes[:event_id]
    Effective::Event.find_by_id(attributes[:event_id])
  end
end

#event_registrationObject



54
55
56
57
58
# File 'app/datatables/effective_event_registrants_datatable.rb', line 54

def event_registration
  @event_registration ||= if attributes[:event_registration_id]
    EffectiveEvents.EventRegistration.find_by_id(attributes[:event_registration_id])
  end
end