debian-mirror-gitlab/app/services/notes/destroy_service.rb
2018-11-18 11:00:15 +05:30

11 lines
205 B
Ruby

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