2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-16 01:43:33 +11:00
|
|
|
class ProcessingWorker
|
|
|
|
include Sidekiq::Worker
|
2016-12-30 06:12:32 +11:00
|
|
|
|
2017-04-04 21:02:49 +10:00
|
|
|
sidekiq_options backtrace: true
|
2016-11-16 01:43:33 +11:00
|
|
|
|
|
|
|
def perform(account_id, body)
|
2018-05-04 07:02:46 +10:00
|
|
|
ProcessFeedService.new.call(body, Account.find(account_id), override_timestamps: true)
|
2016-11-16 01:43:33 +11:00
|
|
|
end
|
|
|
|
end
|