debian-mirror-gitlab/app/graphql/types/release_source_type.rb
2021-03-11 19:13:27 +05:30

16 lines
450 B
Ruby

# 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