summaryrefslogtreecommitdiff
path: root/lib/api/entities/nuget/dependency.rb
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