aboutsummaryrefslogtreecommitdiffstats
path: root/cache/query.go
diff options
context:
space:
mode:
authorSladyn <gunnerforlife00@gmail.com>2019-03-01 20:00:07 +0530
committerSladyn <gunnerforlife00@gmail.com>2019-03-02 23:06:55 +0530
commitbeecd2dbe449e551d08668adf0b8ace427d09c49 (patch)
tree6b7f517508cc0dc9cc8a9ae83d7017c0b0581254 /cache/query.go
parent43e56692e832bcb4ef39f745ec9fbaf7360052de (diff)
downloadgit-bug-beecd2dbe449e551d08668adf0b8ace427d09c49.tar.gz
Made requested changes
Made changes to the doc files and remaining areas which required updation.
Diffstat (limited to 'cache/query.go')
-rw-r--r--cache/query.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cache/query.go b/cache/query.go
index 6ffa6510..39815d32 100644
--- a/cache/query.go
+++ b/cache/query.go
@@ -60,6 +60,10 @@ func ParseQuery(query string) (*Query, error) {
f := LabelFilter(qualifierQuery)
result.Label = append(result.Label, f)
+ case "title":
+ f := TitleFilter(qualifierQuery)
+ result.Label = append(result.Title, f)
+
case "no":
err := result.parseNoFilter(qualifierQuery)
if err != nil {