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
path: root/lib
diff options
context:
space:
mode:
authorCamil Staps <info@camilstaps.nl>2019-02-02 22:53:21 +0300
committerCamil Staps <info@camilstaps.nl>2019-08-07 21:49:16 +0300
commit99bb207ef14d12fe59e23fd70e219ed5e166470b (patch)
tree6103d3c62349e2ed56bfab52c492c0dc3c035fa0 /lib
parente8bdcdf0f89d88463f6fb8a67e85f315e6a9097d (diff)
Fix tests
Diffstat (limited to 'lib')
-rw-r--r--lib/api/projects.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb
index 6d221200372..996205d4b7b 100644
--- a/lib/api/projects.rb
+++ b/lib/api/projects.rb
@@ -382,7 +382,7 @@ module API
use :pagination
end
get ':id/starrers' do
- starrers = UsersStarProjectsFinder.new(params, user_project, current_user: current_user).execute
+ starrers = UsersStarProjectsFinder.new(user_project, params, current_user: current_user).execute
present paginate(starrers), with: Entities::UserStarsProject
end