Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variable.rb « ci « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4d5248245a4ead9b203e5d47c0edce5a1c6137f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    module Ci
      class Variable < Grape::Entity
        expose :variable_type, :key, :value
        expose :protected?, as: :protected, if: -> (entity, _) { entity.respond_to?(:protected?) }
        expose :masked?, as: :masked, if: -> (entity, _) { entity.respond_to?(:masked?) }
        expose :environment_scope, if: -> (entity, _) { entity.respond_to?(:environment_scope) }
      end
    end
  end
end