Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGitLab Release Tools Bot <delivery-team+release-tools@gitlab.com>2020-12-07 23:24:11 +0300
committerGitLab Release Tools Bot <delivery-team+release-tools@gitlab.com>2020-12-07 23:24:11 +0300
commit1b517a5a19c4aafc6fa6d738b0ee7c1e4a2cce36 (patch)
tree11bb99aa913b3a18342818e15a71856e214caee6 /lib
parent1b6a590b197788a06a1ff726ea61630a49b10412 (diff)
parentf508fb8a043a4b1f996cb7ec8bba198e5b5986f5 (diff)
Merge remote-tracking branch 'dev/13-6-stable' into 13-6-stable
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/background_migration/remove_inaccessible_epic_todos.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/gitlab/background_migration/remove_inaccessible_epic_todos.rb b/lib/gitlab/background_migration/remove_inaccessible_epic_todos.rb
new file mode 100644
index 00000000000..74c48b237cc
--- /dev/null
+++ b/lib/gitlab/background_migration/remove_inaccessible_epic_todos.rb
@@ -0,0 +1,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_if_ee('EE::Gitlab::BackgroundMigration::RemoveInaccessibleEpicTodos')