debian-mirror-gitlab/app/graphql/mutations/releases/base.rb

14 lines
310 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
module Mutations
module Releases
class Base < BaseMutation
2021-03-11 19:13:27 +05:30
include FindsProject
2021-01-29 00:20:46 +05:30
2021-10-27 15:23:28 +05:30
argument :project_path, GraphQL::Types::ID,
2021-01-29 00:20:46 +05:30
required: true,
2021-03-08 18:12:59 +05:30
description: 'Full path of the project the release is associated with.'
2021-01-29 00:20:46 +05:30
end
end
end