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
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2017-05-24 23:12:40 +0300
committerToon Claes <toon@gitlab.com>2017-05-30 23:45:59 +0300
commit0f0b9a8466747f69e210fc27778f96ab8ef628bc (patch)
treecfe7bea389ec5f107c4e7261879235c6700baf09 /lib/api/projects.rb
parent01c6323d238706bc8d0acb0273552a094c996ca0 (diff)
Use helper to construct Finder params
The ProjectsFinder and GroupFinder both support the same set of params. And the `/api/v4/projects` and `/api/v4/group/:id/projects` also support the same set of params. But they do not match the Finder params. So use a helper method to transform them.
Diffstat (limited to 'lib/api/projects.rb')
-rw-r--r--lib/api/projects.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb
index 7610e3cbacc..267dd2a74d7 100644
--- a/lib/api/projects.rb
+++ b/lib/api/projects.rb
@@ -68,14 +68,7 @@ module API
end
def present_projects(options = {})
- finder_params = {}
- finder_params[:non_public] = true if params[:membership].present?
- finder_params[:starred] = true if params[:starred].present?
- finder_params[:visibility_level] = Gitlab::VisibilityLevel.level_value(params[:visibility]) if params[:visibility]
- finder_params[:archived] = params[:archived]
- finder_params[:search] = params[:search] if params[:search]
-
- projects = ProjectsFinder.new(current_user: current_user, params: finder_params).execute
+ projects = ProjectsFinder.new(current_user: current_user, params: project_finder_params).execute
projects = filter_projects(projects)
projects = projects.with_statistics if params[:statistics]
projects = projects.with_issues_enabled if params[:with_issues_enabled]