mirror of
https://github.com/mastodon/mastodon.git
synced 2025-03-24 23:17:57 +01:00
9 lines
216 B
Ruby
9 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BlockWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(account_id, target_account_id)
|
|
BlockService.new.call(Account.find(account_id), Account.find(target_account_id))
|
|
end
|
|
end
|