gitlab-org--gitlab-foss/lib/api/entities/project_daily_statistics.rb

13 lines
271 B
Ruby

# frozen_string_literal: true
module API
module Entities
class ProjectDailyStatistics < Grape::Entity
expose :fetches do
expose :total_fetch_count, as: :total
expose :fetches, as: :days, using: ProjectDailyFetches
end
end
end
end