summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/sync_blocking_issues_count.rb
blob: 49a632952fb9f81ab36a14f9e7228a16693dfce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class SyncBlockingIssuesCount
      def perform(start_id, end_id)
      end
    end
  end
end

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