debian-mirror-gitlab/lib/api/entities/protected_branch.rb
2021-06-08 01:23:25 +05:30

16 lines
411 B
Ruby

# frozen_string_literal: true
module API
module Entities
class ProtectedBranch < Grape::Entity
expose :id
expose :name
expose :push_access_levels, using: Entities::ProtectedRefAccess
expose :merge_access_levels, using: Entities::ProtectedRefAccess
expose :allow_force_push
end
end
end
API::Entities::ProtectedBranch.prepend_mod_with('API::Entities::ProtectedBranch')