Files
mastodon/app/workers/processing_worker.rb
2017-04-06 00:21:00 +02:00

12 lines
237 B
Ruby

# frozen_string_literal: true
class ProcessingWorker
include Sidekiq::Worker
sidekiq_options queue: 'pull', backtrace: true
def perform(account_id, body)
ProcessFeedService.new.call(body, Account.find(account_id))
end
end