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
|
|
|
|
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
|