gitlab-org--gitlab-foss/app/workers/issuable/label_links_destroy_worker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
330 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Issuable
class LabelLinksDestroyWorker
include ApplicationWorker
data_consistency :always
idempotent!
feature_category :team_planning
def perform(target_id, target_type)
::Issuable::DestroyLabelLinksService.new(target_id, target_type).execute
end
end
end