debian-mirror-gitlab/app/workers/issuable/label_links_destroy_worker.rb

17 lines
330 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
module Issuable
class LabelLinksDestroyWorker
include ApplicationWorker
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
idempotent!
2021-12-11 22:18:48 +05:30
feature_category :team_planning
2021-06-08 01:23:25 +05:30
def perform(target_id, target_type)
::Issuable::DestroyLabelLinksService.new(target_id, target_type).execute
end
end
end