2020-10-24 23:57:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Issues
|
2021-09-04 01:27:46 +05:30
|
|
|
class SetSubscription < BaseMutation
|
2020-10-24 23:57:45 +05:30
|
|
|
graphql_name 'IssueSetSubscription'
|
|
|
|
|
|
|
|
include ResolvesSubscription
|
2021-09-04 01:27:46 +05:30
|
|
|
include Mutations::ResolvesIssuable
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
argument :project_path, GraphQL::Types::ID,
|
2021-09-04 01:27:46 +05:30
|
|
|
required: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: "Project the issue to mutate is in."
|
2021-09-04 01:27:46 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
argument :iid, GraphQL::Types::String,
|
2021-09-04 01:27:46 +05:30
|
|
|
required: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: "IID of the issue to mutate."
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
field :issue,
|
|
|
|
Types::IssueType,
|
|
|
|
null: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: "Issue after mutation."
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
authorize :update_subscription
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_object(project_path:, iid:)
|
|
|
|
resolve_issuable(type: :issue, parent_path: project_path, iid: iid)
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|