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

release_source_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 891da47211656f20103dbb83f367d26374bbe494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Types
  class ReleaseSourceType < BaseObject
    graphql_name 'ReleaseSource'
    description 'Represents the source code attached to a release in a particular format'

    authorize :download_code

    field :format, GraphQL::STRING_TYPE, null: true,
          description: 'Format of the source'
    field :url, GraphQL::STRING_TYPE, null: true,
          description: 'Download URL of the source'
  end
end