5ae9a44aa1
The API get projects/:id/traffic/fetches allows user with write access to the repository to get the number of clones for the last 30 days.
13 lines
292 B
Ruby
13 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
|