2017-08-22 05:56:33 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::SubscriptionsCleanupScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-08-25 20:28:07 +09:00
|
|
|
sidekiq_options unique: :until_executed, retry: 0
|
2018-08-19 22:48:29 +09:00
|
|
|
|
2017-08-22 05:56:33 +09:00
|
|
|
def perform
|
|
|
|
Subscription.expired.in_batches.delete_all
|
|
|
|
end
|
|
|
|
end
|