2018-12-13 14:26:56 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProjectDailyStatisticsWorker
|
|
|
|
include ApplicationWorker
|
|
|
|
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category :source_code_management
|
|
|
|
|
2018-12-13 14:26:56 -05:00
|
|
|
def perform(project_id)
|
|
|
|
project = Project.find_by_id(project_id)
|
|
|
|
|
|
|
|
return unless project&.repository&.exists?
|
|
|
|
|
|
|
|
Projects::FetchStatisticsIncrementService.new(project).execute
|
|
|
|
end
|
|
|
|
end
|