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



46
47
48
49
50
# File 'app/datatables/effective_event_registrants_datatable.rb', line 46

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

#event_registrationObject



52
53
54
55
56
# File 'app/datatables/effective_event_registrants_datatable.rb', line 52

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