debian-mirror-gitlab/app/serializers/group_variable_entity.rb
2020-04-08 14:13:33 +05:30

12 lines
213 B
Ruby

# frozen_string_literal: true
class GroupVariableEntity < Grape::Entity
expose :id
expose :key
expose :value
expose :variable_type
expose :protected?, as: :protected
expose :masked?, as: :masked
end