diff options
author | Cyril <jv.cyril@gmail.com> | 2012-12-10 23:46:31 +0100 |
---|---|---|
committer | Cyril <jv.cyril@gmail.com> | 2012-12-12 18:51:20 +0100 |
commit | d3b8952f8fb067afe89f08eadbae7733c0cc6824 (patch) | |
tree | ef0663a6e52d527045727c875d4c15fa0020778e /doc/api/issues.md | |
parent | b48852e78901e3ce3fdc6449c4dc67d01b30f0ca (diff) | |
download | gitlab-ce-d3b8952f8fb067afe89f08eadbae7733c0cc6824.tar.gz |
Add username to User and UserBasic entities in API and in examples in doc.
Diffstat (limited to 'doc/api/issues.md')
-rw-r--r-- | doc/api/issues.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md index aaad3305489..4c0dde2f4e4 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -18,6 +18,7 @@ GET /issues "assignee": null, "author": { "id": 1, + "username": "john_smith", "email": "john@example.com", "name": "John Smith", "blocked": false, @@ -46,6 +47,7 @@ GET /issues }, "assignee": { "id": 2, + "username": "jack_smith", "email": "jack@example.com", "name": "Jack Smith", "blocked": false, @@ -53,6 +55,7 @@ GET /issues }, "author": { "id": 1, + "username": "john_smith", "email": "john@example.com", "name": "John Smith", "blocked": false, @@ -110,6 +113,7 @@ Parameters: }, "assignee": { "id": 2, + "username": "jack_smith", "email": "jack@example.com", "name": "Jack Smith", "blocked": false, @@ -117,6 +121,7 @@ Parameters: }, "author": { "id": 1, + "username": "john_smith", "email": "john@example.com", "name": "John Smith", "blocked": false, |