]> cat aescling's git repositories - mastodon.git/blob - app/workers/block_worker.rb
Add specs for UnreservedUsernameValidator (#9698)
[mastodon.git] / app / workers / block_worker.rb
1 # frozen_string_literal: true
2
3 class BlockWorker
4 include Sidekiq::Worker
5
6 def perform(account_id, target_account_id)
7 AfterBlockService.new.call(
8 Account.find(account_id),
9 Account.find(target_account_id)
10 )
11 end
12 end
This page took 0.076988 seconds and 4 git commands to generate.