Add a /changes option to include detailed account info

Change-Id: I793e97762231372f223b069cff26c291ad767309
This commit is contained in:
Dave Borowitz
2013-02-01 14:32:48 -08:00
parent 75a988ba4a
commit 8926a88810
7 changed files with 142 additions and 32 deletions

View File

@@ -30,7 +30,10 @@ public enum ListChangesOption {
/** If a patch set is included, include the files of the patch set. */
CURRENT_FILES(5),
ALL_FILES(6);
ALL_FILES(6),
/** If accounts are included, include detailed account info. */
DETAILED_ACCOUNTS(7);
private final int value;