2020-05-24 23:13:21 +05:30
|
|
|
# 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
|
2023-03-04 22:38:38 +05:30
|
|
|
expose :raw?, as: :raw
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
|
|
|
end
|