2019-11-25 13:06:04 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Issues
|
|
|
|
class SetDueDate < Base
|
|
|
|
graphql_name 'IssueSetDueDate'
|
|
|
|
|
|
|
|
argument :due_date,
|
|
|
|
Types::TimeType,
|
|
|
|
required: true,
|
|
|
|
description: 'The desired due date for the issue'
|
|
|
|
|
|
|
|
def resolve(project_path:, iid:, due_date:)
|
|
|
|
issue = authorized_find!(project_path: project_path, iid: iid)
|
|
|
|
project = issue.project
|
|
|
|
|
|
|
|
::Issues::UpdateService.new(project, current_user, due_date: due_date)
|
|
|
|
.execute(issue)
|
|
|
|
|
|
|
|
{
|
|
|
|
issue: issue,
|
2020-05-20 08:07:52 -04:00
|
|
|
errors: errors_on_object(issue)
|
2019-11-25 13:06:04 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|