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

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

module API
  module Entities
    module Nuget
      class Dependency < Grape::Entity
        expose :id, as: :@id, documentation: { type: 'string', example: 'http://gitlab.com/Sandbox.App/1.0.0.json#dependency' }
        expose :type, as: :@type, documentation: { type: 'string', example: 'PackageDependency' }
        expose :name, as: :id, documentation: { type: 'string', example: 'Dependency' }
        expose :range, documentation: { type: 'string', example: '2.0.0' }
      end
    end
  end
end