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:
David Pursehouse
2017-04-28 11:29:09 +02:00
parent d656fa827b
commit e8815eb126
2 changed files with 2 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ public class AccountDashboardScreen extends Screen implements ChangeListScreen {
+ who
+ " -owner:"
+ who
+ " -star:ignore) OR assignee:"
+ " -is:ignored) OR assignee:"
+ who
+ ")";
}

View File

@@ -443,7 +443,7 @@
O: options,
q: [
'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 ' +
'limit:10',
],