1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-25 15:46:24 +09:00
mastodon/app/workers/salmon_worker.rb

10 lines
190 B
Ruby

# frozen_string_literal: true
class SalmonWorker
include Sidekiq::Worker
def perform(account_id, body)
ProcessInteractionService.new.call(body, Account.find(account_id))
end
end