2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProjectDailyStatisticsWorker
|
|
|
|
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
|