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



65
66
67
68
69
# File 'app/datatables/effective_event_registrants_datatable.rb', line 65

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

#event_registrationObject



71
72
73
74
75
# File 'app/datatables/effective_event_registrants_datatable.rb', line 71

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