diff options
author | Michael Greene <michael.greene@gmail.com> | 2016-04-05 12:05:55 -0500 |
---|---|---|
committer | Michael Greene <michael.greene@gmail.com> | 2016-04-13 12:04:09 -0500 |
commit | 28a7fe25fdf28042630282ace35e37310c8f0a12 (patch) | |
tree | cb8c857fdb640ff69af3c04c2a1122b3d4e986bc /doc/api/issues.md | |
parent | e17f79fdfa40fb7cef02bdbc3f0f72a67da12893 (diff) | |
download | gitlab-ce-28a7fe25fdf28042630282ace35e37310c8f0a12.tar.gz |
Allow back dating issues on update
Diffstat (limited to 'doc/api/issues.md')
-rw-r--r-- | doc/api/issues.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md index 42024becc36..3e78149f442 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -298,6 +298,7 @@ PUT /projects/:id/issues/:issue_id | `milestone_id` | integer | no | The ID of a milestone to assign the issue to | | `labels` | string | no | Comma-separated label names for an issue | | `state_event` | string | no | The state event of an issue. Set `close` to close the issue and `reopen` to reopen it | +| `updated_at` | string | no | Date time string, ISO 8601 formatted, e.g. `2016-03-11T03:45:40Z` | ```bash curl -X PUT -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/4/issues/85?state_event=close |