2019-09-30 21:07:59 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Notes
|
|
|
|
class Destroy < Base
|
|
|
|
graphql_name 'DestroyNote'
|
|
|
|
|
|
|
|
authorize :admin_note
|
|
|
|
|
|
|
|
argument :id,
|
2021-01-03 14:25:43 +05:30
|
|
|
::Types::GlobalIDType[::Note],
|
|
|
|
required: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: 'Global ID of the note to destroy.'
|
2019-09-30 21:07:59 +05:30
|
|
|
|
|
|
|
def resolve(id:)
|
|
|
|
note = authorized_find!(id: id)
|
|
|
|
|
|
|
|
::Notes::DestroyService.new(note.project, current_user).execute(note)
|
|
|
|
|
|
|
|
{
|
|
|
|
errors: []
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|