debian-mirror-gitlab/app/workers/trending_projects_worker.rb
2021-02-22 17:27:13 +05:30

15 lines
364 B
Ruby

# frozen_string_literal: true
class TrendingProjectsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include CronjobQueue # rubocop:disable Scalability/CronWorkerContext
feature_category :source_code_management
def perform
Gitlab::AppLogger.info('Refreshing trending projects')
TrendingProject.refresh!
end
end