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/projects.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/projects.md')
-rw-r--r-- | doc/api/projects.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index fdedf904a3a..fac4107fd93 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -17,6 +17,7 @@ GET /projects "default_branch": "master", "owner": { "id": 1, + "username": "john_smith", "email": "john@example.com", "name": "John Smith", "blocked": false, @@ -38,6 +39,7 @@ GET /projects "default_branch": "api", "owner": { "id": 1, + "username": "john_smith", "email": "john@example.com", "name": "John Smith", "blocked": false, @@ -75,6 +77,7 @@ Parameters: "default_branch": "api", "owner": { "id": 1, + "username": "john_smith", "email": "john@example.com", "name": "John Smith", "blocked": false, @@ -141,6 +144,7 @@ Parameters: { "id": 1, + "username": "john_smith", "email": "john@example.com", "name": "John Smith", "blocked": false, |