Class: SpreePluggto::UpsertAllProductsJob

Inherits:
ActiveJob::Base
  • Object
show all
Defined in:
app/jobs/spree_pluggto/upsert_all_products_job.rb

Instance Method Summary collapse

Instance Method Details

#performObject



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