mirror of
https://github.com/funamitech/mastodon
synced 2024-12-12 05:39:02 +09:00
12 lines
205 B
Ruby
12 lines
205 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'sidekiq-scheduler'
|
||
|
|
||
|
class Scheduler::SubscriptionsCleanupScheduler
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
def perform
|
||
|
Subscription.expired.in_batches.delete_all
|
||
|
end
|
||
|
end
|