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 22:56:33 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::SubscriptionsCleanupScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-08-25 13:28:07 +02:00
|
|
|
sidekiq_options unique: :until_executed, retry: 0
|
2018-08-19 15:48:29 +02:00
|
|
|
|
2017-08-21 22:56:33 +02:00
|
|
|
def perform
|
|
|
|
Subscription.expired.in_batches.delete_all
|
|
|
|
end
|
|
|
|
end
|