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>2020-07-02 05:34:09 +0000
commitff93582e16edfc833ef2197215636b76a823ae33 (patch)
tree98b585e7b8b24690de21fe97ab8f2e46c5485925
parentb1a8d24cbf39ca79bc0899fee8fa3f714e99debd (diff)
Add integrating section to change dashboard
Fixes: QTQAINFRA-2970 Change-Id: I7448c32b8bbbdd15975eb8518c9bd65fd3f3d7de Reviewed-by: Paul Wicking <paul.wicking@qt.io> (cherry picked from commit b55bcb6893c07dbdb2934051c0b3611771ee4322) Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io> (cherry picked from commit 1522706179d5fad529ca05259f294edefdb57f07)
-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 e79277a41d..0190799e6b 100644
--- a/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
+++ b/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.html
@@ -151,12 +151,19 @@ limitations under the License.
suffixForDashboard: 'limit:10',
},
{
+ 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',