Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_variable_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19c5fa26f340ef3478d8ac915261d9c1a6b878e5 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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

  expose :protected?, as: :protected
  expose :masked?, as: :masked
end