debian-mirror-gitlab/app/serializers/ci/basic_variable_entity.rb
2023-06-09 08:11:10 +05:30

14 lines
270 B
Ruby

# frozen_string_literal: true
module Ci
class BasicVariableEntity < Grape::Entity
expose :id
expose :key
expose :value
expose :variable_type
expose :protected?, as: :protected
expose :masked?, as: :masked
expose :raw?, as: :raw
end
end