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

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