summaryrefslogtreecommitdiff
path: root/lib/api/entities/plan_limit.rb
blob: 40e8b348c1862c40d799ffb4d53d649dc2bc9758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    class PlanLimit < Grape::Entity
      expose :conan_max_file_size
      expose :generic_packages_max_file_size
      expose :maven_max_file_size
      expose :npm_max_file_size
      expose :nuget_max_file_size
      expose :pypi_max_file_size
    end
  end
end