10 lines
189 B
Ruby
10 lines
189 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupVariableEntity < Grape::Entity
|
|
expose :id
|
|
expose :key
|
|
expose :value
|
|
|
|
expose :protected?, as: :protected
|
|
expose :masked?, as: :masked
|
|
end
|