debian-mirror-gitlab/lib/api/entities/protected_ref_access.rb
2023-07-09 08:55:56 +05:30

18 lines
703 B
Ruby

# frozen_string_literal: true
module API
module Entities
class ProtectedRefAccess < Grape::Entity
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
expose :deploy_key_id, documentation: { type: 'integer', example: 1 },
if: ->(access) { access.has_attribute?(:deploy_key_id) && access.deploy_key_id }
end
end
end
API::Entities::ProtectedRefAccess.prepend_mod_with('API::Entities::ProtectedRefAccess')