Include approved/rejected/etc. in LabelInfo from /detail

Change-Id: I7b630fa66cc2224fcdc3df3a2b881e4dd1cc3700
This commit is contained in:
Dave Borowitz
2013-02-21 17:24:27 -08:00
parent e349a80f0a
commit 32e8ca6d39

View File

@@ -24,7 +24,9 @@ public class GetDetail implements RestReadView<ChangeResource> {
@Inject
GetDetail(ChangeJson json) {
this.json = json.addOption(ListChangesOption.DETAILED_LABELS)
this.json = json
.addOption(ListChangesOption.LABELS)
.addOption(ListChangesOption.DETAILED_LABELS)
.addOption(ListChangesOption.DETAILED_ACCOUNTS);
}