diff options
author | Toon Claes <toon@gitlab.com> | 2017-05-30 23:24:17 +0200 |
---|---|---|
committer | Toon Claes <toon@gitlab.com> | 2017-05-30 23:24:17 +0200 |
commit | 1e5506d01619780da68fc51ada58188a9070255b (patch) | |
tree | b26383b07e7e4c279299e90d99d1b04804c49130 /lib/api/v3/projects.rb | |
parent | db679788e46d55984a4af71034c6db11aed919e4 (diff) | |
download | gitlab-ce-1e5506d01619780da68fc51ada58188a9070255b.tar.gz |
Remove some deprecated methodstc-improve-project-api-perf
To avoid the use of slow queries, remove some deprecated methods and encourage
the use of ProjectFinder to find projects.
Diffstat (limited to 'lib/api/v3/projects.rb')
-rw-r--r-- | lib/api/v3/projects.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/v3/projects.rb b/lib/api/v3/projects.rb index 164612cb8dd..896c00b88e7 100644 --- a/lib/api/v3/projects.rb +++ b/lib/api/v3/projects.rb @@ -147,7 +147,7 @@ module API get '/starred' do authenticate! - present_projects current_user.viewable_starred_projects + present_projects ProjectsFinder.new(current_user: current_user, params: { starred: true }).execute end desc 'Get all projects for admin user' do |