summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/releases/base.rb
blob: 610e9cd9cdee562c467792c0eb5f1fc314335bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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