summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJukka Jokiniva <jukka.jokiniva@qt.io>2019-08-28 12:06:03 +0300
committerJukka Jokiniva <jukka.jokiniva@qt.io>2019-09-03 05:48:55 +0000
commitb55bcb6893c07dbdb2934051c0b3611771ee4322 (patch)
tree53aa79c1eef7f55281dfa26341cc2d4901420867
parente672dcf46186ce2f2f68900140f845011f3637a8 (diff)
Add integrating section to change dashboardv2.16.9-based
Fixes: QTQAINFRA-2970 Change-Id: I7448c32b8bbbdd15975eb8518c9bd65fd3f3d7de Reviewed-by: Paul Wicking <paul.wicking@qt.io>
-rw-r--r--polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html b/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
index 36507073ff..799b6142da 100644
--- a/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
+++ b/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
@@ -144,12 +144,19 @@ limitations under the License.
query: 'is:open -is:ignored cc:${user}',
},
{
+ name: 'Integrating',
+ query: '(is:staged OR is:integrating) -is:ignored (-is:wip OR owner:self) ' +
+ '(owner:${user} OR reviewer:${user} OR assignee:${user} ' +
+ 'OR cc:${user})',
+ suffixForDashboard: 'limit:20',
+ },
+ {
name: 'Recently closed',
// Closed changes where viewed user is owner, reviewer, or assignee.
// Changes ignored by the viewing user are filtered out, and so are WIP
// changes not owned by the viewing user (the one instance of
// 'owner:self' is intentional and implements this logic).
- query: 'is:closed -is:ignored (-is:wip OR owner:self) ' +
+ query: '(is:merged OR is:abandoned OR is:deferred) -is:ignored (-is:wip OR owner:self) ' +
'(owner:${user} OR reviewer:${user} OR assignee:${user} ' +
'OR cc:${user})',
suffixForDashboard: '-age:4w limit:10',