summaryrefslogtreecommitdiff
path: root/app/finders/projects_finder.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-23 18:15:39 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-23 18:15:39 +0000
commit68caf5fd883a7fd5a3395c2e5ae2a5c511445613 (patch)
tree7a63a675e90f9819e32dc9927d3a1fae6e3ffe75 /app/finders/projects_finder.rb
parent003d7f2a09668af85f94e48ed49d60862b96d8f8 (diff)
downloadgitlab-ce-68caf5fd883a7fd5a3395c2e5ae2a5c511445613.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/finders/projects_finder.rb')
-rw-r--r--app/finders/projects_finder.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/finders/projects_finder.rb b/app/finders/projects_finder.rb
index 401bc473216..57a9538db15 100644
--- a/app/finders/projects_finder.rb
+++ b/app/finders/projects_finder.rb
@@ -31,6 +31,7 @@
#
class ProjectsFinder < UnionFinder
include CustomAttributesFilter
+ include UpdatedAtFilter
attr_accessor :params
attr_reader :current_user, :project_ids_relation
@@ -87,6 +88,7 @@ class ProjectsFinder < UnionFinder
collection = by_last_activity_before(collection)
collection = by_language(collection)
collection = by_feature_availability(collection)
+ collection = by_updated_at(collection)
by_repository_storage(collection)
end