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/models/todo.rb')
-rw-r--r--app/models/todo.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/todo.rb b/app/models/todo.rb
index c8138587d83..23685fb68e0 100644
--- a/app/models/todo.rb
+++ b/app/models/todo.rb
@@ -149,8 +149,8 @@ class Todo < ApplicationRecord
.order('todos.created_at')
end
- def pluck_user_id
- pluck(:user_id)
+ def distinct_user_ids
+ distinct.pluck(:user_id)
end
# Count todos grouped by user_id and state, using an UNION query
@@ -252,4 +252,4 @@ class Todo < ApplicationRecord
end
end
-Todo.prepend_if_ee('EE::Todo')
+Todo.prepend_mod_with('Todo')