debian-mirror-gitlab/lib/gitlab/background_migration/remove_inaccessible_epic_todos.rb

14 lines
354 B
Ruby
Raw Normal View History

2020-12-08 15:28:05 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# rubocop:disable Style/Documentation
class RemoveInaccessibleEpicTodos
def perform(start_id, stop_id)
end
end
end
end
2021-06-08 01:23:25 +05:30
Gitlab::BackgroundMigration::RemoveInaccessibleEpicTodos.prepend_mod_with('Gitlab::BackgroundMigration::RemoveInaccessibleEpicTodos')