2018-12-13 14:26:56 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
2020-10-14 20:08:42 -04:00
|
|
|
class ProjectStatistics < ::API::Base
|
2020-10-30 14:08:56 -04:00
|
|
|
feature_category :source_code_management
|
|
|
|
|
2018-12-13 14:26:56 -05:00
|
|
|
before do
|
|
|
|
authenticate!
|
|
|
|
authorize! :daily_statistics, user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
|
|
|
requires :id, type: String, desc: 'The ID of a project'
|
|
|
|
end
|
|
|
|
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
|
|
|
desc 'Get the list of project fetch statistics for the last 30 days'
|
|
|
|
get ":id/statistics" do
|
|
|
|
statistic_finder = ::Projects::DailyStatisticsFinder.new(user_project)
|
|
|
|
|
|
|
|
present statistic_finder, with: Entities::ProjectDailyStatistics
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|