summaryrefslogtreecommitdiff
path: root/app/serializers/variable_entity.rb
blob: 85cf367fe510399c5fceb220a96d977e2e8864f0 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class VariableEntity < Grape::Entity
  expose :id
  expose :key
  expose :value

  expose :protected?, as: :protected
end