debian-mirror-gitlab/app/graphql/mutations/releases/base.rb
2021-03-11 19:13:27 +05:30

13 lines
308 B
Ruby

# frozen_string_literal: true
module Mutations
module Releases
class Base < BaseMutation
include FindsProject
argument :project_path, GraphQL::ID_TYPE,
required: true,
description: 'Full path of the project the release is associated with.'
end
end
end