15 lines
617 B
Ruby
15 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')
|