summaryrefslogtreecommitdiffstats
path: root/extensions/MyDashboard/lib/Queries.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2014-10-14 07:13:34 +0200
committerDylan William Hardison <dylan@hardison.net>2014-10-14 07:13:34 +0200
commitb348b6a10cabddf1b579ebaca0d799def2900e52 (patch)
tree691094e3cc90740abe63ae40e4e75e8e12ded6d6 /extensions/MyDashboard/lib/Queries.pm
parent41e58e2f043162806bfb9fd3723a5391c9599de2 (diff)
downloadbugzilla-b348b6a10cabddf1b579ebaca0d799def2900e52.tar.gz
bugzilla-b348b6a10cabddf1b579ebaca0d799def2900e52.tar.xz
Bug 1074586 - New Feature: Bugs of Interest
I just want to walk around in circles walk around in circles
Diffstat (limited to 'extensions/MyDashboard/lib/Queries.pm')
-rw-r--r--extensions/MyDashboard/lib/Queries.pm17
1 files changed, 17 insertions, 0 deletions
diff --git a/extensions/MyDashboard/lib/Queries.pm b/extensions/MyDashboard/lib/Queries.pm
index 9dff5abe4..34c63e07b 100644
--- a/extensions/MyDashboard/lib/Queries.pm
+++ b/extensions/MyDashboard/lib/Queries.pm
@@ -106,6 +106,7 @@ sub QUERY_DEFS {
name => 'lastvisitedbugs',
heading => 'Updated Since Last Visit',
description => 'Bugs updated since last visited',
+ mark_read => 'Mark Visited',
params => {
o1 => 'lessthan',
v1 => '%last_changed%',
@@ -113,9 +114,25 @@ sub QUERY_DEFS {
},
},
{
+ name => 'interestingbugs',
+ heading => 'Interesting Bugs',
+ description => 'Bugs that you may find interesting',
+ mark_read => 'Remove Interest',
+ params => {
+ j_top => 'OR',
+ f1 => 'bug_interest_ts',
+ o1 => 'isnotempty',
+
+ f2 => 'last_visit_ts',
+ o2 => 'lessthan',
+ v2 => '%last_changed%',
+ }
+ },
+ {
name => 'nevervisitbugs',
heading => 'Involved with and Never Visited',
description => "Bugs you've never visited, but are involved with",
+ mark_read => 'Mark Visited',
params => {
query_format => "advanced",
bug_status => ['__open__'],,