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:
authorShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-03-17 12:27:11 +0300
committerShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-05-02 20:11:51 +0300
commit3735b8aaa1f48ea3803e31e18f1e40d2fd091b26 (patch)
tree10c868d3c1407c35fc4f14a7c107b557cf86a07f /app/finders
parentf0e3076a32f1f127ef4d31b53979edd5e0218469 (diff)
Allow only indexed columns in #order_and_sort. Remove present (Because unnecessary) from condition. Added spec just in case.
Diffstat (limited to 'app/finders')
-rw-r--r--app/finders/pipelines_finder.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/finders/pipelines_finder.rb b/app/finders/pipelines_finder.rb
index 5e50eb46c7e..6a92aedc873 100644
--- a/app/finders/pipelines_finder.rb
+++ b/app/finders/pipelines_finder.rb
@@ -108,12 +108,12 @@ class PipelinesFinder
end
def order_and_sort(items)
- order_by = if params[:order_by].present? && items.column_names.include?(params[:order_by])
+ order_by = if %w[id status ref user_id].include?(params[:order_by]) # Allow only indexed columns
params[:order_by]
else
:id
end
- sort = if params[:sort].present? && params[:sort] =~ /\A(ASC|DESC)\z/i
+ sort = if params[:sort] =~ /\A(ASC|DESC)\z/i
params[:sort]
else
:desc