BigW Consortium Gitlab

trending_projects_worker.rb 189 Bytes
class TrendingProjectsWorker
  include ApplicationWorker
  include CronjobQueue

  def perform
    Rails.logger.info('Refreshing trending projects')

    TrendingProject.refresh!
  end
end