1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-13 14:18:34 +09:00
YuruToot/app/workers/scheduler/subscriptions_cleanup_scheduler.rb

10 lines
176 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Scheduler::SubscriptionsCleanupScheduler
include Sidekiq::Worker
def perform
Subscription.expired.in_batches.delete_all
end
end