debian-mirror-gitlab/lib/api/entities/protected_branch.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
617 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class ProtectedBranch < Grape::Entity
2023-01-13 00:05:48 +05:30
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' }
2020-03-13 15:44:24 +05:30
end
end
end
2021-06-08 01:23:25 +05:30
API::Entities::ProtectedBranch.prepend_mod_with('API::Entities::ProtectedBranch')