debian-mirror-gitlab/app/graphql/mutations/issues/set_due_date.rb

37 lines
975 B
Ruby
Raw Normal View History

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-06-08 01:23:25 +05:30
required: false,
description: 'The desired due date for the issue, ' \
'due date will be removed if absent or set to null'
def ready?(**args)
unless args.key?(:due_date)
raise Gitlab::Graphql::Errors::ArgumentError, 'Argument dueDate must be provided (`null` accepted)'
end
super
end
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