debian-mirror-gitlab/app/serializers/group_variable_entity.rb

12 lines
213 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
class GroupVariableEntity < Grape::Entity
expose :id
expose :key
expose :value
2020-04-08 14:13:33 +05:30
expose :variable_type
2018-03-17 18:26:18 +05:30
expose :protected?, as: :protected
2019-07-07 11:18:12 +05:30
expose :masked?, as: :masked
2018-03-17 18:26:18 +05:30
end