2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module AlertManagement
|
|
|
|
class UpdateAlertStatus < Base
|
|
|
|
graphql_name 'UpdateAlertStatus'
|
|
|
|
|
|
|
|
argument :status, Types::AlertManagement::StatusEnum,
|
|
|
|
required: true,
|
|
|
|
description: 'The status to set the alert'
|
|
|
|
|
|
|
|
def resolve(args)
|
|
|
|
alert = authorized_find!(project_path: args[:project_path], iid: args[:iid])
|
|
|
|
result = update_status(alert, args[:status])
|
|
|
|
|
|
|
|
prepare_response(result)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def update_status(alert, status)
|
2020-07-28 23:09:34 +05:30
|
|
|
::AlertManagement::Alerts::UpdateService
|
|
|
|
.new(alert, current_user, status: status)
|
2020-05-24 23:13:21 +05:30
|
|
|
.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
def prepare_response(result)
|
|
|
|
{
|
|
|
|
alert: result.payload[:alert],
|
2020-06-23 00:09:42 +05:30
|
|
|
errors: result.errors
|
2020-05-24 23:13:21 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|