2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Issues
|
|
|
|
class SetSeverity < Base
|
|
|
|
graphql_name 'IssueSetSeverity'
|
|
|
|
|
|
|
|
argument :severity, Types::IssuableSeverityEnum, required: true,
|
|
|
|
description: 'Set the incident severity level.'
|
|
|
|
|
2021-10-29 20:43:33 +05:30
|
|
|
authorize :admin_issue
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
def resolve(project_path:, iid:, severity:)
|
|
|
|
issue = authorized_find!(project_path: project_path, iid: iid)
|
|
|
|
project = issue.project
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
::Issues::UpdateService.new(project: project, current_user: current_user, params: { severity: severity })
|
2020-11-24 15:15:51 +05:30
|
|
|
.execute(issue)
|
|
|
|
|
|
|
|
{
|
|
|
|
issue: issue,
|
|
|
|
errors: errors_on_object(issue)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|