mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:11:12 +01:00
1032f3994f
Fix #5597
11 lines
265 B
Ruby
11 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::SuspensionWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
def perform(account_id, remove_user = false)
|
|
SuspendAccountService.new.call(Account.find(account_id), remove_user: remove_user)
|
|
end
|
|
end
|