2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
class VariableEntity < Grape::Entity
|
|
|
|
expose :id
|
|
|
|
expose :key
|
|
|
|
expose :value
|
|
|
|
|
|
|
|
expose :protected?, as: :protected
|
2019-07-07 11:18:12 +05:30
|
|
|
expose :masked?, as: :masked
|
2019-10-12 21:52:04 +05:30
|
|
|
expose :environment_scope
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|