InlineEdit: Add "Edits" to My dashboard

Use "has:edit" operator to view existing change edits across project
boundaries for the current user.

Inspired-by: Martin Waitz <martin.waitz@gmail.com>
Change-Id: I2658f2cf9bf215ce19698ea092ac9f0d395ccd32
This commit is contained in:
David Ostrovsky 2015-05-01 01:01:17 +02:00
parent 9952870b5e
commit 35c3a7d086
2 changed files with 3 additions and 0 deletions

View File

@ -149,6 +149,8 @@ global capability are able to access change edit refs.
To search change edits from the UI the link:user-search.html#has[has:edit]
predicate can be used.
Alternatively change edits can be accessed through "My => Edits" dashboard.
[[not-implemented-features]]
== Not Implemented Features

View File

@ -151,6 +151,7 @@ public class GetPreferences implements RestReadView<AccountResource> {
my.add(new TopMenu.MenuItem("Changes", "#/dashboard/self", null));
my.add(new TopMenu.MenuItem("Drafts", "#/q/owner:self+is:draft", null));
my.add(new TopMenu.MenuItem("Draft Comments", "#/q/has:draft", null));
my.add(new TopMenu.MenuItem("Edits", "#/q/has:edit", null));
my.add(new TopMenu.MenuItem("Watched Changes", "#/q/is:watched+is:open", null));
my.add(new TopMenu.MenuItem("Starred Changes", "#/q/is:starred", null));
my.add(new TopMenu.MenuItem("Groups", "#/groups/self", null));