2020-02-01 22:08:37 -05:00
|
|
|
# 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
|
2021-03-11 13:09:23 -05:00
|
|
|
expose :allow_force_push
|
2020-02-01 22:08:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-02-17 07:09:20 -05:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
API::Entities::ProtectedBranch.prepend_mod_with('API::Entities::ProtectedBranch')
|