summaryrefslogtreecommitdiff
path: root/app/finders/pipelines_finder.rb
diff options
context:
space:
mode:
authorShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-03-08 18:19:11 +0900
committerShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-05-03 02:11:51 +0900
commit83d02a0b609ea71ef8448b9012221962dda69aba (patch)
treebd52f4a84e4ed2747883361aa1c82df4101b0396 /app/finders/pipelines_finder.rb
parenta46c91f43225931f94a7d3c7f47beef82152f0ce (diff)
downloadgitlab-ce-83d02a0b609ea71ef8448b9012221962dda69aba.tar.gz
Change name to username
Diffstat (limited to 'app/finders/pipelines_finder.rb')
-rw-r--r--app/finders/pipelines_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/pipelines_finder.rb b/app/finders/pipelines_finder.rb
index aa0210fa7f2..c01a1a73666 100644
--- a/app/finders/pipelines_finder.rb
+++ b/app/finders/pipelines_finder.rb
@@ -81,7 +81,7 @@ class PipelinesFinder
def by_username(items)
if params[:username].present?
- items.joins(:user).where("users.name = ?", params[:username])
+ items.joins(:user).where("users.username = ?", params[:username])
else
items
end