debian-mirror-gitlab/lib/gitlab/background_migration/fix_orphan_promoted_issues.rb
2020-03-13 15:44:24 +05:30

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')