gitlab-org--gitlab-foss/app/workers/project_daily_statistics_wo...

14 lines
292 B
Ruby

# frozen_string_literal: true
class ProjectDailyStatisticsWorker
include ApplicationWorker
def perform(project_id)
project = Project.find_by_id(project_id)
return unless project&.repository&.exists?
Projects::FetchStatisticsIncrementService.new(project).execute
end
end