about summary refs log tree commit diff
path: root/app/workers/pubsubhubbub/confirmation_worker.rb
blob: 783a8c95fb0ffb70e1467845a53b62b695ed78d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Pubsubhubbub::ConfirmationWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'push', retry: false

  def perform(subscription_id, mode, secret = nil, lease_seconds = nil); end
end