summaryrefslogtreecommitdiff
path: root/app/services/notes/destroy_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/notes/destroy_service.rb')
-rw-r--r--app/services/notes/destroy_service.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/services/notes/destroy_service.rb b/app/services/notes/destroy_service.rb
index fa0c2c5c86b..64e9accd97f 100644
--- a/app/services/notes/destroy_service.rb
+++ b/app/services/notes/destroy_service.rb
@@ -1,13 +1,11 @@
# frozen_string_literal: true
module Notes
- class DestroyService < ::Notes::BaseService
+ class DestroyService < BaseService
def execute(note)
TodoService.new.destroy_target(note) do |note|
note.destroy
end
-
- clear_noteable_diffs_cache(note)
end
end
end