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
diff options
context:
space:
mode:
Diffstat (limited to 'app/finders/users_with_pending_todos_finder.rb')
-rw-r--r--app/finders/users_with_pending_todos_finder.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/finders/users_with_pending_todos_finder.rb b/app/finders/users_with_pending_todos_finder.rb
deleted file mode 100644
index 461bd92a366..00000000000
--- a/app/finders/users_with_pending_todos_finder.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-# Finder that given a target (e.g. an issue) finds all the users that have
-# pending todos for said target.
-class UsersWithPendingTodosFinder
- attr_reader :target
-
- # target - The target, such as an Issue or MergeRequest.
- def initialize(target)
- @target = target
- end
-
- def execute
- User.for_todos(target.todos.pending)
- end
-end