summaryrefslogtreecommitdiff
path: root/app/services/issuable/destroy_service.rb
blob: 0610b401213b7c803eef7e4bafc3dac18d5d3b35 (plain)
1
2
3
4
5
6
7
8
9
module Issuable
  class DestroyService < IssuableBaseService
    def execute(issuable)
      if issuable.destroy
        issuable.update_project_counter_caches
      end
    end
  end
end