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

metadata.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7dfcad2ccabd3c9b936c9707050035d72a89835e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module API
  module Entities
    class Metadata < Grape::Entity
      expose :version, documentation: { type: 'string', example: '15.2-pre' }
      expose :revision, documentation: { type: 'string', example: 'c401a659d0c' }
      expose :kas do
        expose :enabled, documentation: { type: 'boolean' }
        expose :externalUrl, documentation: { type: 'string', example: 'grpc://gitlab.example.com:8150' }
        expose :version, documentation: { type: 'string', example: '15.0.0' }
      end
      expose :enterprise, documentation: { type: 'boolean' }
    end
  end
end