You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastodon/app/workers/scheduler/fasp/follow_recommendation_clean...

14 lines
317 B
Ruby

# frozen_string_literal: true
class Scheduler::Fasp::FollowRecommendationCleanupScheduler
include Sidekiq::Worker
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
def perform
return unless Mastodon::Feature.fasp_enabled?
Fasp::FollowRecommendation.outdated.delete_all
end
end