2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class ProtectedRefAccess < Grape::Entity
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :id, documentation: { type: 'integer', example: 1 }
|
|
|
|
expose :access_level, documentation: { type: 'integer', example: 40 }
|
|
|
|
expose :access_level_description,
|
|
|
|
documentation: { type: 'string', example: 'Maintainers' } do |protected_ref_access|
|
|
|
|
protected_ref_access.humanize
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
API::Entities::ProtectedRefAccess.prepend_mod_with('API::Entities::ProtectedRefAccess')
|