gitlab-org--gitlab-foss/app/services/notes/destroy_service.rb

16 lines
320 B
Ruby

# frozen_string_literal: true
module Notes
class DestroyService < ::Notes::BaseService
def execute(note)
TodoService.new.destroy_target(note) do |note|
note.destroy
end
clear_noteable_diffs_cache(note)
end
end
end
Notes::DestroyService.prepend_if_ee('EE::Notes::DestroyService')