mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-16 15:57:22 +00:00
11 lines
189 B
Ruby
11 lines
189 B
Ruby
class TrendingProjectsWorker
|
|
include ApplicationWorker
|
|
include CronjobQueue
|
|
|
|
def perform
|
|
Rails.logger.info('Refreshing trending projects')
|
|
|
|
TrendingProject.refresh!
|
|
end
|
|
end
|