This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/workers/scheduler/trending_tags_scheduler.rb
2021-03-15 11:17:43 +01:00

12 lines
192 B
Ruby

# frozen_string_literal: true
class Scheduler::TrendingTagsScheduler
include Sidekiq::Worker
sidekiq_options retry: 0
def perform
TrendingTags.update! if Setting.trends
end
end