gitlab-org--gitlab-foss/lib/gitlab/background_migration/fix_orphan_promoted_issues.rb

14 lines
310 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# No OP for CE
class FixOrphanPromotedIssues
def perform(note_id)
end
end
end
end
Gitlab::BackgroundMigration::FixOrphanPromotedIssues.prepend_if_ee('EE::Gitlab::BackgroundMigration::FixOrphanPromotedIssues')