diff options
author | Dylan William Hardison <dylan@hardison.net> | 2014-09-10 05:33:09 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2014-09-10 05:33:09 +0200 |
commit | 34cc5408aacd1fb76130cc560f126d406910a5b1 (patch) | |
tree | f32928d60c48c86ed36d4899f4c6a86334b1703a /extensions/MyDashboard | |
parent | cf7ddf8474fa15955e409d28b2956c6749407f6f (diff) | |
download | bugzilla-34cc5408aacd1fb76130cc560f126d406910a5b1.tar.gz bugzilla-34cc5408aacd1fb76130cc560f126d406910a5b1.tar.xz |
Bug 1020558 - Add Involved with Bugs and Never Visited Query to MyDashboard
r=glob
Diffstat (limited to 'extensions/MyDashboard')
-rw-r--r-- | extensions/MyDashboard/lib/Queries.pm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extensions/MyDashboard/lib/Queries.pm b/extensions/MyDashboard/lib/Queries.pm index 8e75319c7..9dff5abe4 100644 --- a/extensions/MyDashboard/lib/Queries.pm +++ b/extensions/MyDashboard/lib/Queries.pm @@ -112,6 +112,35 @@ sub QUERY_DEFS { f1 => 'last_visit_ts', }, }, + { + name => 'nevervisitbugs', + heading => 'Involved with and Never Visited', + description => "Bugs you've never visited, but are involved with", + params => { + query_format => "advanced", + bug_status => ['__open__'],, + o1 => "isempty", + f1 => "last_visit_ts", + j2 => "OR", + f2 => "OP", + f3 => "assigned_to", + o3 => "equals", + v3 => $user->login, + o4 => "equals", + f4 => "reporter", + v4 => $user->login, + v5 => $user->login, + f5 => "qa_contact", + o5 => "equals", + o6 => "equals", + f6 => "cc", + v6 => $user->login, + f7 => "bug_mentor", + o7 => "equals", + v7 => $user->login, + f9 => "CP", + }, + }, ); if (Bugzilla->params->{'useqacontact'}) { |