This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-21 01:14:40 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Pubsubhubbub::UnsubscribeWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options queue: 'push', retry: false, unique: :until_executed, dead: false
|
|
|
|
|
2019-07-06 23:26:16 +02:00
|
|
|
def perform(account_id); end
|
2017-08-21 01:14:40 +02:00
|
|
|
end
|