]> cat aescling's git repositories - mastodon.git/blob - app/workers/block_worker.rb
Bump aws-sdk-s3 from 1.89.0 to 1.91.0 (#15879)
[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.09104 seconds and 4 git commands to generate.