debian-mirror-gitlab/lib/api/entities/plan_limit.rb

17 lines
404 B
Ruby
Raw Normal View History

2021-04-17 20:07:23 +05:30
# frozen_string_literal: true
module API
module Entities
class PlanLimit < Grape::Entity
expose :conan_max_file_size
expose :generic_packages_max_file_size
2022-01-26 12:08:38 +05:30
expose :helm_max_file_size
2021-04-17 20:07:23 +05:30
expose :maven_max_file_size
expose :npm_max_file_size
expose :nuget_max_file_size
expose :pypi_max_file_size
2021-09-30 23:02:18 +05:30
expose :terraform_module_max_file_size
2021-04-17 20:07:23 +05:30
end
end
end