about summary refs log tree commit diff
path: root/app/workers/pubsubhubbub/subscribe_worker.rb
blob: 0c4111a8ce013797d554344c368875a80acb9cfc (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)
    Rails.logger.debug "PuSH re-subscribing to #{account.acct}"
    ::SubscribeService.new.call(account)
  end
end