summaryrefslogtreecommitdiffstats
path: root/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts
diff options
context:
space:
mode:
authorJukka Jokiniva <jukka.jokiniva@qt.io>2022-10-07 10:03:53 +0300
committerJukka Jokiniva <jukka.jokiniva@qt.io>2022-10-12 15:32:03 +0300
commit7e802e45b9aae3849860ef8356f40f4d78355926 (patch)
tree3fec771bae800a3b5742b3179ee30d5a2acd1664 /polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts
parentddff26bca2841e1920d90f8e05f39614b3dc1209 (diff)
parent86bdbbc48133b6ab07a44bef47a4785d504d7f09 (diff)
Merge remote-tracking branch 'origin/v3.5.2-based' into v3.5.3-basedv3.5.3-based
* origin/v3.5.2-based: Fix issue of some changes not loading Clear attention set when change is deferred Add label score extension points for plugin customization Add integrating section to change dashboard Fix submodule urls Modify Gerrit version string to indicate that this is a Qt fork Add QtStage permission Update status values staged, integrating and deferred for client side modules Update status values staged, integrating and deferred for java modules Change-Id: I7a780ad7b08f97982d86d5a34d472c5b7bc3e3c5 Task-number: QTQAINFRA-5213
Diffstat (limited to 'polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts')
-rw-r--r--polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts11
1 files changed, 10 insertions, 1 deletions
diff --git a/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts b/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts
index b8f2630c35..be030a8483 100644
--- a/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts
+++ b/polygerrit-ui/app/elements/core/gr-navigation/gr-navigation.ts
@@ -209,6 +209,14 @@ const CCED: DashboardSection = {
query: 'is:open -is:ignored -is:wip cc:${user}',
suffixForDashboard: 'limit:10',
};
+export const INTEGRATING: DashboardSection = {
+ 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',
+};
export const CLOSED: DashboardSection = {
name: 'Recently closed',
// Closed changes where viewed user is owner, reviewer, or assignee.
@@ -216,7 +224,7 @@ export const CLOSED: DashboardSection = {
// 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) ' +
+ '(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',
@@ -229,6 +237,7 @@ const DEFAULT_SECTIONS: DashboardSection[] = [
OUTGOING,
INCOMING,
CCED,
+ INTEGRATING,
CLOSED,
];