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

class Pubsubhubbub::UnsubscribeWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'push', retry: false, unique: :until_executed, dead: false

  def perform(account_id); end
end