debian-mirror-gitlab/lib/api/entities/plan_limit.rb
2022-01-26 12:08:38 +05:30

16 lines
404 B
Ruby

# 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