summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/generate_gitlab_subscriptions.rb
blob: 85bcf8558f22ac670a884d7b6e8482e4174e2579 (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 GenerateGitlabSubscriptions
      def perform(start_id, stop_id)
      end
    end
  end
end

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