mirror of
https://github.com/glitch-soc/mastodon
synced 2025-08-08 16:11:26 +00:00
9 lines
181 B
Ruby
9 lines
181 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Scheduler::SubscriptionsCleanupScheduler
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options unique: :until_executed, retry: 0
|
|
|
|
def perform; end
|
|
end
|