diff options
author | Chris McKnight <cmckni3@gmail.com> | 2013-09-30 21:45:15 -0500 |
---|---|---|
committer | Chris McKnight <cmckni3@gmail.com> | 2013-09-30 21:45:15 -0500 |
commit | 4ee78342663ef458942eef2007084fcf881b3f87 (patch) | |
tree | 9f545ce8e6cef68cbe1c962bae6ba2697303ad90 /doc/api/groups.md | |
parent | 979dd2603c18502e3a0065d0aa0c94af5e495b8a (diff) | |
download | gitlab-ce-4ee78342663ef458942eef2007084fcf881b3f87.tar.gz |
Fix json keys in groups API documentation
Diffstat (limited to 'doc/api/groups.md')
-rw-r--r-- | doc/api/groups.md | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/api/groups.md b/doc/api/groups.md index fb77901c65b..47c7c1bf4f5 100644 --- a/doc/api/groups.md +++ b/doc/api/groups.md @@ -70,22 +70,22 @@ GET /groups/:id/members ```json [ { - id: 1, - username: "raymond_smith", - email: "ray@smith.org", - name: "Raymond Smith", - state: "active", - created_at: "2012-10-22T14:13:35Z", - access_level: 30 + "id": 1, + "username": "raymond_smith", + "email": "ray@smith.org", + "name": "Raymond Smith", + "state": "active", + "created_at": "2012-10-22T14:13:35Z", + "access_level": 30 }, { - id: 2, - username: "john_doe", - email: "joh@doe.org", - name: "John Doe", - state: "active", - created_at: "2012-10-22T14:13:35Z", - access_level: 30 + "id": 2, + "username": "john_doe", + "email": "joh@doe.org", + "name": "John Doe", + "state": "active", + "created_at": "2012-10-22T14:13:35Z", + "access_level": 30 } ] ``` |