2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module DesignManagement
|
|
|
|
class Base < ::Mutations::BaseMutation
|
|
|
|
include Mutations::ResolvesIssuable
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
argument :project_path, GraphQL::Types::ID,
|
2020-05-24 23:13:21 +05:30
|
|
|
required: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: "Project where the issue is to upload designs for."
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
argument :iid, GraphQL::Types::ID,
|
2020-05-24 23:13:21 +05:30
|
|
|
required: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: "IID of the issue to modify designs for."
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_object(project_path:, iid:)
|
|
|
|
resolve_issuable(type: :issue, parent_path: project_path, iid: iid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|