debian-mirror-gitlab/app/workers/issuable/label_links_destroy_worker.rb
2021-12-11 22:18:48 +05:30

17 lines
330 B
Ruby

# 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