diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/finders/starred_projects_finder.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/finders/starred_projects_finder.rb b/app/finders/starred_projects_finder.rb index 0a67a1242ff..e38cb8c4569 100644 --- a/app/finders/starred_projects_finder.rb +++ b/app/finders/starred_projects_finder.rb @@ -3,6 +3,7 @@ class StarredProjectsFinder < ProjectsFinder def initialize(user, params: {}, current_user: nil) project_ids = user.starred_projects.select(:id) + super(params: params, current_user: current_user, project_ids_relation: project_ids) end end |