mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 05:24:29 +00:00
cc70f28f19
can be processed separately
14 lines
274 B
Ruby
14 lines
274 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SalmonWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options backtrace: true
|
|
|
|
def perform(account_id, body)
|
|
ProcessInteractionService.new.call(body, Account.find(account_id))
|
|
rescue ActiveRecord::RecordNotFound
|
|
true
|
|
end
|
|
end
|