debian-mirror-gitlab/app/workers/project_daily_statistics_worker.rb
2020-04-08 14:13:33 +05:30

16 lines
383 B
Ruby

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