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

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

module API
  module Entities
    module Helm
      class Index < Grape::Entity
        expose :api_version, as: :apiVersion
        expose :entries
        expose :generated
        expose :server_info, as: :serverInfo
      end
    end
  end
end