2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Issues
|
|
|
|
class SetDueDate < Base
|
|
|
|
graphql_name 'IssueSetDueDate'
|
|
|
|
|
|
|
|
argument :due_date,
|
|
|
|
Types::TimeType,
|
2021-10-27 15:23:28 +05:30
|
|
|
required: :nullable,
|
|
|
|
description: 'Desired due date for the issue. Due date is removed if null.'
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
def resolve(project_path:, iid:, due_date:)
|
|
|
|
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: { due_date: due_date })
|
2020-01-01 13:55:28 +05:30
|
|
|
.execute(issue)
|
|
|
|
|
|
|
|
{
|
|
|
|
issue: issue,
|
2020-06-23 00:09:42 +05:30
|
|
|
errors: errors_on_object(issue)
|
2020-01-01 13:55:28 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|