2016-11-28 13:36:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Pubsubhubbub::ConfirmationWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-01-05 03:28:21 +01:00
|
|
|
sidekiq_options queue: 'push', retry: false
|
2016-11-29 02:07:14 +01:00
|
|
|
|
2019-07-06 23:26:16 +02:00
|
|
|
def perform(subscription_id, mode, secret = nil, lease_seconds = nil); end
|
2016-11-28 13:36:47 +01:00
|
|
|
end
|