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