debian-mirror-gitlab/app/graphql/mutations/notes/destroy.rb
2021-03-08 18:12:59 +05:30

27 lines
529 B
Ruby

# frozen_string_literal: true
module Mutations
module Notes
class Destroy < Base
graphql_name 'DestroyNote'
authorize :admin_note
argument :id,
::Types::GlobalIDType[::Note],
required: true,
description: 'The global ID of the note to destroy.'
def resolve(id:)
note = authorized_find!(id: id)
::Notes::DestroyService.new(note.project, current_user).execute(note)
{
errors: []
}
end
end
end
end