Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fix_orphan_promoted_issues.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c50bf430d923d49d62c1a526bc97edbd0511147a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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_mod_with('Gitlab::BackgroundMigration::FixOrphanPromotedIssues')