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

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

module API
  module Entities
    module ConanPackage
      class ConanRecipeManifest < Grape::Entity
        expose :recipe_urls, merge: true, documentation: { type: 'object', example: '{ "conan_sources.tgz": "https://gitlab.example.com/api/v4/packages/conan/v1/files/my-package/1.0/my-group+my-project/stable/0/export/conan_sources.tgz" }' }
      end
    end
  end
end