2018-07-19 14:43:13 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-29 20:01:53 -05:00
|
|
|
class VariableEntity < Grape::Entity
|
|
|
|
expose :id
|
|
|
|
expose :key
|
|
|
|
expose :value
|
|
|
|
|
|
|
|
expose :protected?, as: :protected
|
2019-03-29 11:46:31 -04:00
|
|
|
expose :masked?, as: :masked
|
2018-01-29 20:01:53 -05:00
|
|
|
end
|