1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-15 23:23:50 -05:00
tootlab-mastodon/app/workers/scheduler/subscriptions_cleanup_scheduler.rb

10 lines
181 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Scheduler::SubscriptionsCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed, retry: 0
2019-07-21 04:08:00 +02:00
def perform; end
end