Fix example for listing group members recursively via REST

The example still shows the old MemberInfo entity, but we are now using
AccountInfo instead.

Change-Id: If1a7b2a30854b385f7e7cee154f82d12a4e0a3c4
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-03-05 15:35:25 +01:00
parent 51284e66aa
commit 3e22d48084

View File

@@ -611,28 +611,19 @@ members the parameter `recursive` can be set.
)]}' )]}'
[ [
{ {
"kind": "gerritcodereview#member", "_account_id": 1000097,
"full_name": "Jane Roe", "name": "Jane Roe",
"id": "1000097", "email": "jane.roe@example.com"
"account_id": 1000097,
"preferred_email": "jane.roe@example.com",
"user_name": "jane"
}, },
{ {
"kind": "gerritcodereview#member", "_account_id": 1000096,
"full_name": "John Doe", "name": "John Doe",
"id": "1000096", "email": "john.doe@example.com"
"account_id": 1000096,
"preferred_email": "john.doe@example.com",
"user_name": "doe"
}, },
{ {
"kind": "gerritcodereview#member", "_account_id": 1000098,
"full_name": "Richard Roe", "name": "Richard Roe",
"id": "1000098", "email": "richard.roe@example.com"
"account_id": 1000098,
"preferred_email": "richard.roe@example.com",
"user_name": "richard"
} }
] ]
---- ----