summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/remove_inaccessible_epic_todos.rb
blob: cb6a600a525d499bfe020ad9908da646da42402e (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 RemoveInaccessibleEpicTodos
      def perform(start_id, stop_id)
      end
    end
  end
end

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