Class: CustomerSalesActivityWorker

Inherits:
Object
  • Object
show all
Includes:
Sidekiq::Job
Defined in:
app/workers/customer_sales_activity_worker.rb

Overview

Sidekiq worker: customer sales activity.

Instance Method Summary collapse

Instance Method Details

#perform(options = {}) ⇒ Object



7
8
9
10
# File 'app/workers/customer_sales_activity_worker.rb', line 7

def perform(options = {})
  options.with_indifferent_access
  Customer::FillSalesActivity.new.process
end