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