summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/generate_gitlab_subscriptions.rb
blob: 160e6d2fe8b93d58fb7a97ef682b4a99d1063d87 (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_mod_with('Gitlab::BackgroundMigration::GenerateGitlabSubscriptions')