debian-mirror-gitlab/lib/api/entities/protected_branch.rb
2023-01-12 18:35:48 +00:00

16 lines
617 B
Ruby

# frozen_string_literal: true
module API
module Entities
class ProtectedBranch < Grape::Entity
expose :id, documentation: { type: 'integer', example: 1 }
expose :name, documentation: { type: 'string', example: 'main' }
expose :push_access_levels, using: Entities::ProtectedRefAccess, documentation: { is_array: true }
expose :merge_access_levels, using: Entities::ProtectedRefAccess, documentation: { is_array: true }
expose :allow_force_push, documentation: { type: 'boolean' }
end
end
end
API::Entities::ProtectedBranch.prepend_mod_with('API::Entities::ProtectedBranch')