b099c6ff9f
The merge request counter in the UI was not decreasing when a merge request was deleting. This was just due to the cache not being refreshed on a delete action. fixes: https://gitlab.com/gitlab-org/gitlab-ce/issues/44458
12 lines
326 B
Ruby
12 lines
326 B
Ruby
module Issuable
|
|
class DestroyService < IssuableBaseService
|
|
def execute(issuable)
|
|
TodoService.new.destroy_target(issuable) do |issuable|
|
|
if issuable.destroy
|
|
issuable.update_project_counter_caches
|
|
issuable.assignees.each(&:invalidate_cache_counts)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|