debian-mirror-gitlab/app/graphql/mutations/todos/create.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
888 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
module Mutations
module Todos
class Create < ::Mutations::Todos::Base
graphql_name 'TodoCreate'
authorize :create_todo
argument :target_id,
Types::GlobalIDType[Todoable],
required: true,
2021-10-27 15:23:28 +05:30
description: "Global ID of the to-do item's parent. Issues, merge requests, designs, and epics are supported."
2021-01-29 00:20:46 +05:30
field :todo, Types::TodoType,
null: true,
2021-10-27 15:23:28 +05:30
description: 'To-do item created.'
2021-01-29 00:20:46 +05:30
def resolve(target_id:)
2022-07-16 23:28:13 +05:30
target = authorized_find!(target_id)
2021-01-29 00:20:46 +05:30
todo = TodoService.new.mark_todo(target, current_user)&.first
errors = errors_on_object(todo) if todo
{
todo: todo,
errors: errors
}
end
private
def find_object(id)
GitlabSchema.find_by_gid(id)
end
end
end
end