summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/design_management/base.rb
blob: a6b498c380c53f90f6dc7937df2001fc5b6ae2a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Mutations
  module DesignManagement
    class Base < ::Mutations::BaseMutation
      include Mutations::ResolvesIssuable

      argument :project_path, GraphQL::Types::ID,
               required: true,
               description: "Project where the issue is to upload designs for."

      argument :iid, GraphQL::Types::ID,
               required: true,
               description: "IID of the issue to modify designs for."

      private

      def find_object(project_path:, iid:)
        resolve_issuable(type: :issue, parent_path: project_path, iid: iid)
      end
    end
  end
end