debian-mirror-gitlab/app/graphql/types/release_assets_input_type.rb

14 lines
426 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
module Types
# rubocop: disable Graphql/AuthorizeTypes
class ReleaseAssetsInputType < BaseInputObject
graphql_name 'ReleaseAssetsInput'
description 'Fields that are available when modifying release assets'
argument :links, [Types::ReleaseAssetLinkInputType],
required: false,
2021-03-11 19:13:27 +05:30
description: 'A list of asset links to associate to the release.'
2021-01-29 00:20:46 +05:30
end
end