BigW Consortium Gitlab

Commit c2c16309 by Dmitriy Zaporozhets

Merge branch 'fix/groupsearch' into 'master'

Fix group search to check path as well as name The API documentation says: "You can search for groups by name or path with: /groups?search=Rails" But you can't because the search query only checks the name, not the path. This fixes that. See merge request !325
parents a4372ab6 0fe1c9b6
......@@ -91,7 +91,7 @@ class Group < Namespace
class << self
def search(query)
where("LOWER(namespaces.name) LIKE :query", query: "%#{query.downcase}%")
where("LOWER(namespaces.name) LIKE :query or LOWER(namespaces.path) LIKE :query", query: "%#{query.downcase}%")
end
def sort(method)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment