summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJukka Jokiniva <jukka.jokiniva@qt.io>2019-08-28 12:06:03 +0300
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-09-22 11:32:22 +0000
commitc86be9a3f717004d6ae964a0c2f71bda2d6c51b8 (patch)
treecd42b28723e42143bdbb0c990025234a34dc42fd
parent02d6f44e6b060f59f49fd7f452bcb533cf8ddff3 (diff)
Add integrating section to change dashboard
Fixes: QTQAINFRA-2970 Change-Id: I7448c32b8bbbdd15975eb8518c9bd65fd3f3d7de (cherry picked from commit ff93582e16edfc833ef2197215636b76a823ae33) Reviewed-by: Jukka Jokiniva <jukka.jokiniva@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 c8bf6c1236..533a4f4d34 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',