Class: SpreePluggto::UpsertAllProductsJob
- Inherits:
-
ActiveJob::Base
- Object
- ActiveJob::Base
- SpreePluggto::UpsertAllProductsJob
- Defined in:
- app/jobs/spree_pluggto/upsert_all_products_job.rb
Instance Method Summary collapse
Instance Method Details
#perform ⇒ Object
3 4 5 6 7 |
# File 'app/jobs/spree_pluggto/upsert_all_products_job.rb', line 3 def perform ::Spree::Product.active.where(sync_with_pluggto: true).each do |product| ::SpreePluggto::UpsertProductJob.perform_now(product.id) end end |