This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-24 00:38:37 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SoftBlockDomainFollowersWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
|
|
|
|
def perform(account_id, domain)
|
2017-06-04 00:11:15 +02:00
|
|
|
followers_id = Account.find(account_id).followers.where(domain: domain).pluck(:id)
|
|
|
|
SoftBlockWorker.push_bulk(followers_id) do |follower_id|
|
|
|
|
[account_id, follower_id]
|
2017-04-24 00:38:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|