debian-mirror-gitlab/lib/api/entities/helm/index.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
278 B
Ruby
Raw Normal View History

2021-09-30 23:02:18 +05:30
# 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