debian-mirror-gitlab/app/workers/project_daily_statistics_worker.rb

16 lines
383 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class ProjectDailyStatisticsWorker # rubocop:disable Scalability/IdempotentWorker
2019-07-07 11:18:12 +05:30
include ApplicationWorker
2019-12-21 20:55:43 +05:30
feature_category :source_code_management
2019-07-07 11:18:12 +05:30
def perform(project_id)
project = Project.find_by_id(project_id)
return unless project&.repository&.exists?
Projects::FetchStatisticsIncrementService.new(project).execute
end
end