summaryrefslogtreecommitdiff
path: root/app/serializers/ci/basic_variable_entity.rb
blob: dad59e8735b56266538d46ebf1bdf32a216093cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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
  end
end