summaryrefslogtreecommitdiff
path: root/app/finders/admin/projects_finder.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/finders/admin/projects_finder.rb')
-rw-r--r--app/finders/admin/projects_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/admin/projects_finder.rb b/app/finders/admin/projects_finder.rb
index a5ba791a513..7176bfe22d6 100644
--- a/app/finders/admin/projects_finder.rb
+++ b/app/finders/admin/projects_finder.rb
@@ -18,7 +18,7 @@ class Admin::ProjectsFinder
end
def execute
- items = Project.with_statistics
+ items = Project.without_deleted.with_statistics
items = items.in_namespace(namespace_id) if namespace_id.present?
items = items.where(visibility_level: visibility_level) if visibility_level.present?
items = items.with_push if with_push.present?