From 34cc5408aacd1fb76130cc560f126d406910a5b1 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 9 Sep 2014 23:33:09 -0400 Subject: Bug 1020558 - Add Involved with Bugs and Never Visited Query to MyDashboard r=glob --- extensions/MyDashboard/lib/Queries.pm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'extensions/MyDashboard') 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'}) { -- cgit v1.2.3-24-g4f1b