Welcome to mirror list, hosted at ThFree Co, Russian Federation.

label_links_destroy_worker.rb « issuable « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f88c061bafbfb773dca48aa47e2d75d992c15df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Issuable
  class LabelLinksDestroyWorker
    include ApplicationWorker

    data_consistency :always

    idempotent!
    feature_category :issue_tracking

    def perform(target_id, target_type)
      ::Issuable::DestroyLabelLinksService.new(target_id, target_type).execute
    end
  end
end