summaryrefslogtreecommitdiff
path: root/lib/api/entities/plan_limit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/entities/plan_limit.rb')
-rw-r--r--lib/api/entities/plan_limit.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/api/entities/plan_limit.rb b/lib/api/entities/plan_limit.rb
new file mode 100644
index 00000000000..40e8b348c18
--- /dev/null
+++ b/lib/api/entities/plan_limit.rb
@@ -0,0 +1,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