mastodon/app/workers/scheduler/fasp/follow_recommendation_cleanup_scheduler.rb
2025-06-30 13:39:36 +00:00

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