summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/move_epic_issues_after_epics.rb
blob: dc982e703d1244d673d7004a51ea6559b6581578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class MoveEpicIssuesAfterEpics
      def perform(start_id, stop_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::MoveEpicIssuesAfterEpics.prepend_if_ee('EE::Gitlab::BackgroundMigration::MoveEpicIssuesAfterEpics')