Use -is:ignored predicate in dashboard queries
Now we have a specific predicate for finding ignored changes, we can use that instead of the 'star:ignore' query. Change-Id: I0c47fea273514a9117f20606d7202a6d1a153aa2
This commit is contained in:
@@ -101,7 +101,7 @@ public class AccountDashboardScreen extends Screen implements ChangeListScreen {
|
|||||||
+ who
|
+ who
|
||||||
+ " -owner:"
|
+ " -owner:"
|
||||||
+ who
|
+ who
|
||||||
+ " -star:ignore) OR assignee:"
|
+ " -is:ignored) OR assignee:"
|
||||||
+ who
|
+ who
|
||||||
+ ")";
|
+ ")";
|
||||||
}
|
}
|
||||||
|
@@ -443,7 +443,7 @@
|
|||||||
O: options,
|
O: options,
|
||||||
q: [
|
q: [
|
||||||
'is:open owner:self',
|
'is:open owner:self',
|
||||||
'is:open ((reviewer:self -owner:self -star:ignore) OR assignee:self)',
|
'is:open ((reviewer:self -owner:self -is:ignored) OR assignee:self)',
|
||||||
'is:closed (owner:self OR reviewer:self OR assignee:self) -age:4w ' +
|
'is:closed (owner:self OR reviewer:self OR assignee:self) -age:4w ' +
|
||||||
'limit:10',
|
'limit:10',
|
||||||
],
|
],
|
||||||
|
Reference in New Issue
Block a user