Module: EffectiveEventsEventRegistration::ClassMethods
- Defined in:
- app/models/concerns/effective_events_event_registration.rb
Instance Method Summary collapse
- #all_wizard_steps ⇒ Object
- #effective_events_event_registration? ⇒ Boolean
- #required_wizard_steps ⇒ Object
Instance Method Details
#all_wizard_steps ⇒ Object
19 20 21 |
# File 'app/models/concerns/effective_events_event_registration.rb', line 19 def all_wizard_steps const_get(:WIZARD_STEPS).keys end |
#effective_events_event_registration? ⇒ Boolean
17 |
# File 'app/models/concerns/effective_events_event_registration.rb', line 17 def effective_events_event_registration?; true; end |
#required_wizard_steps ⇒ Object
23 24 25 |
# File 'app/models/concerns/effective_events_event_registration.rb', line 23 def required_wizard_steps [:start, :summary, :billing, :checkout, :submitted] end |