summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/backfill_version_data_from_gitaly.rb
blob: 41f7f7f2f24169ca679c38d5297183d28857b4d3 (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 BackfillVersionDataFromGitaly
      def perform(issue_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::BackfillVersionDataFromGitaly.prepend_mod_with('Gitlab::BackgroundMigration::BackfillVersionDataFromGitaly')