Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/entities/protected_ref_access.rb')
-rw-r--r--lib/api/entities/protected_ref_access.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/api/entities/protected_ref_access.rb b/lib/api/entities/protected_ref_access.rb
index 443277e23cf..ba28c724448 100644
--- a/lib/api/entities/protected_ref_access.rb
+++ b/lib/api/entities/protected_ref_access.rb
@@ -3,10 +3,12 @@
module API
module Entities
class ProtectedRefAccess < Grape::Entity
- expose :access_level
- expose :access_level_description do |protected_ref_access|
- protected_ref_access.humanize
- end
+ expose :id, documentation: { type: 'integer', example: 1 }
+ expose :access_level, documentation: { type: 'integer', example: 40 }
+ expose :access_level_description,
+ documentation: { type: 'string', example: 'Maintainers' } do |protected_ref_access|
+ protected_ref_access.humanize
+ end
end
end
end