2017-05-05 02:23:01 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Pubsubhubbub::SubscribeWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options queue: 'push'
|
|
|
|
|
|
|
|
def perform(account_id)
|
|
|
|
account = Account.find(account_id)
|
2017-05-06 13:05:03 +02:00
|
|
|
logger.debug "PuSH re-subscribing to #{account.acct}"
|
2017-05-05 02:23:01 +02:00
|
|
|
::SubscribeService.new.call(account)
|
|
|
|
end
|
|
|
|
end
|