Class: SpreeCmCommissioner::EnsureEventIdForGuestsJob
- Inherits:
-
ApplicationJob
- Object
- ActiveJob::Base
- ApplicationJob
- ApplicationJob
- SpreeCmCommissioner::EnsureEventIdForGuestsJob
- Defined in:
- app/jobs/spree_cm_commissioner/ensure_event_id_for_guests_job.rb
Instance Method Summary collapse
Methods included from ApplicationJobDecorator
handle_deserialization_error, prepended
Instance Method Details
#perform ⇒ Object
3 4 5 6 7 8 |
# File 'app/jobs/spree_cm_commissioner/ensure_event_id_for_guests_job.rb', line 3 def perform SpreeCmCommissioner::Guest.complete.find_each do |guest| guest.set_event_id guest.save! end end |