debian-mirror-gitlab/app/services/notes/destroy_service.rb

14 lines
254 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
module Notes
2018-12-13 13:39:08 +05:30
class DestroyService < ::Notes::BaseService
2016-06-02 11:05:42 +05:30
def execute(note)
2018-03-17 18:26:18 +05:30
TodoService.new.destroy_target(note) do |note|
note.destroy
end
2018-12-13 13:39:08 +05:30
clear_noteable_diffs_cache(note)
2016-06-02 11:05:42 +05:30
end
end
end