Commit a4e671dc authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix wrong documentation for issue close api. Fixes #3548

parent 0fbaf95f
...@@ -25,7 +25,7 @@ GET /issues ...@@ -25,7 +25,7 @@ GET /issues
"blocked": false, "blocked": false,
"created_at": "2012-05-23T08:00:58Z" "created_at": "2012-05-23T08:00:58Z"
}, },
"closed": true, "state": 'closed',
"updated_at": "2012-07-02T17:53:12Z", "updated_at": "2012-07-02T17:53:12Z",
"created_at": "2012-07-02T17:53:12Z" "created_at": "2012-07-02T17:53:12Z"
}, },
...@@ -42,7 +42,7 @@ GET /issues ...@@ -42,7 +42,7 @@ GET /issues
"title": "v1.0", "title": "v1.0",
"description": "", "description": "",
"due_date": "2012-07-20", "due_date": "2012-07-20",
"closed": false, "state": 'reopenend',
"updated_at": "2012-07-04T13:42:48Z", "updated_at": "2012-07-04T13:42:48Z",
"created_at": "2012-07-04T13:42:48Z" "created_at": "2012-07-04T13:42:48Z"
}, },
...@@ -62,7 +62,7 @@ GET /issues ...@@ -62,7 +62,7 @@ GET /issues
"blocked": false, "blocked": false,
"created_at": "2012-05-23T08:00:58Z" "created_at": "2012-05-23T08:00:58Z"
}, },
"closed": false, "state": 'opened',
"updated_at": "2012-07-12T13:43:19Z", "updated_at": "2012-07-12T13:43:19Z",
"created_at": "2012-06-28T12:58:06Z" "created_at": "2012-06-28T12:58:06Z"
} }
...@@ -111,7 +111,7 @@ Parameters: ...@@ -111,7 +111,7 @@ Parameters:
"title": "v1.0", "title": "v1.0",
"description": "", "description": "",
"due_date": "2012-07-20", "due_date": "2012-07-20",
"closed": false, "state": 'closed',
"updated_at": "2012-07-04T13:42:48Z", "updated_at": "2012-07-04T13:42:48Z",
"created_at": "2012-07-04T13:42:48Z" "created_at": "2012-07-04T13:42:48Z"
}, },
...@@ -131,7 +131,7 @@ Parameters: ...@@ -131,7 +131,7 @@ Parameters:
"blocked": false, "blocked": false,
"created_at": "2012-05-23T08:00:58Z" "created_at": "2012-05-23T08:00:58Z"
}, },
"closed": false, "state": 'opened',
"updated_at": "2012-07-12T13:43:19Z", "updated_at": "2012-07-12T13:43:19Z",
"created_at": "2012-06-28T12:58:06Z" "created_at": "2012-06-28T12:58:06Z"
} }
...@@ -173,7 +173,7 @@ Parameters: ...@@ -173,7 +173,7 @@ Parameters:
+ `assignee_id` (optional) - The ID of a user to assign issue + `assignee_id` (optional) - The ID of a user to assign issue
+ `milestone_id` (optional) - The ID of a milestone to assign issue + `milestone_id` (optional) - The ID of a milestone to assign issue
+ `labels` (optional) - Comma-separated label names for an issue + `labels` (optional) - Comma-separated label names for an issue
+ `closed` (optional) - The state of an issue (0 = false, 1 = true) + `state_event` (optional) - The state event of an issue ('close' to close issue and 'reopen' to reopen it)
## Delete existing issue (**Deprecated**) ## Delete existing issue (**Deprecated**)
......
...@@ -70,7 +70,7 @@ module API ...@@ -70,7 +70,7 @@ module API
# assignee_id (optional) - The ID of a user to assign issue # assignee_id (optional) - The ID of a user to assign issue
# milestone_id (optional) - The ID of a milestone to assign issue # milestone_id (optional) - The ID of a milestone to assign issue
# labels (optional) - The labels of an issue # labels (optional) - The labels of an issue
# state (optional) - The state of an issue (close|reopen) # state_event (optional) - The state event of an issue (close|reopen)
# Example Request: # Example Request:
# PUT /projects/:id/issues/:issue_id # PUT /projects/:id/issues/:issue_id
put ":id/issues/:issue_id" do put ":id/issues/:issue_id" do
......
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