debian-mirror-gitlab/app/graphql/mutations/releases/base.rb
2021-10-27 15:23:28 +05:30

14 lines
310 B
Ruby

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