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

15 lines
352 B
Ruby

# frozen_string_literal: true
module API
module Entities
class ProtectedRefAccess < Grape::Entity
expose :access_level
expose :access_level_description do |protected_ref_access|
protected_ref_access.humanize
end
end
end
end
API::Entities::ProtectedRefAccess.prepend_mod_with('API::Entities::ProtectedRefAccess')