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

class Pubsubhubbub::SubscribeWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'push'

  def perform(account_id)
    account = Account.find(account_id)
    logger.debug "PuSH re-subscribing to #{account.acct}"
    ::SubscribeService.new.call(account)
  end
end