about summary refs log tree commit diff
path: root/app/workers/activitypub/followers_synchronization_worker.rb
blob: 35a3ef0b9676dc21fa6f497854513b6d74ab8051 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class ActivityPub::FollowersSynchronizationWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'push', lock: :until_executed

  def perform(account_id, url)
    @account = Account.find_by(id: account_id)
    return true if @account.nil?

    ActivityPub::SynchronizeFollowersService.new.call(@account, url)
  end
end