gitlab-org--gitlab-foss/app/graphql/mutations/todos/mark_done.rb

38 lines
785 B
Ruby

# frozen_string_literal: true
module Mutations
module Todos
class MarkDone < ::Mutations::Todos::Base
graphql_name 'TodoMarkDone'
authorize :update_todo
argument :id,
GraphQL::ID_TYPE,
required: true,
description: 'The global id of the todo to mark as done'
field :todo, Types::TodoType,
null: false,
description: 'The requested todo'
def resolve(id:)
todo = authorized_find!(id: id)
mark_done(todo)
{
todo: todo.reset,
errors: errors_on_object(todo)
}
end
private
def mark_done(todo)
TodoService.new.resolve_todo(todo, current_user, resolved_by_action: :api_done)
end
end
end
end