debian-mirror-gitlab/app/graphql/mutations/notes/destroy.rb
2021-10-27 15:23:28 +05:30

26 lines
525 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: '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