2020-03-13 15:44:24 +05:30
|
|
|
# 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-04-17 20:07:23 +05:30
|
|
|
expose :allow_force_push
|
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')
|