Commit 073c8a29 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #5230 from cmckni3/patch-1

Fix invalid json in API docs
parents 83c727c5 4ee78342
...@@ -83,22 +83,22 @@ GET /groups/:id/members ...@@ -83,22 +83,22 @@ GET /groups/:id/members
```json ```json
[ [
{ {
id: 1, "id": 1,
username: "raymond_smith", "username": "raymond_smith",
email: "ray@smith.org", "email": "ray@smith.org",
name: "Raymond Smith", "name": "Raymond Smith",
state: "active", "state": "active",
created_at: "2012-10-22T14:13:35Z", "created_at": "2012-10-22T14:13:35Z",
access_level: 30 "access_level": 30
}, },
{ {
id: 2, "id": 2,
username: "john_doe", "username": "john_doe",
email: "joh@doe.org", "email": "joh@doe.org",
name: "John Doe", "name": "John Doe",
state: "active", "state": "active",
created_at: "2012-10-22T14:13:35Z", "created_at": "2012-10-22T14:13:35Z",
access_level: 30 "access_level": 30
} }
] ]
``` ```
......
...@@ -190,4 +190,3 @@ Parameters: ...@@ -190,4 +190,3 @@ Parameters:
+ `id` (required) - The project ID + `id` (required) - The project ID
+ `issue_id` (required) - The ID of the issue + `issue_id` (required) - The ID of the issue
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment