summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2016-08-23 13:56:21 -0400
committerBen Boeckel <ben.boeckel@kitware.com>2016-08-24 10:29:41 -0400
commitae4efc8d5e6a195452f0ecf550198575c63a49b9 (patch)
treefb55724d51025655e75342342d2f8052569302be
parent9b079219730516ae971a4cdc0d68f75b99ff4de1 (diff)
downloadgitlab-ce-ae4efc8d5e6a195452f0ecf550198575c63a49b9.tar.gz
docs: update created_at docs for creating issues via API
See also #19863. Fixes #18458.
-rw-r--r--doc/api/issues.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md
index a665645ad0e..ff8038c78d1 100644
--- a/doc/api/issues.md
+++ b/doc/api/issues.md
@@ -323,7 +323,7 @@ POST /projects/:id/issues
| `assignee_id` | integer | no | The ID of a user to assign issue |
| `milestone_id` | integer | no | The ID of a milestone to assign issue |
| `labels` | string | no | Comma-separated label names for an issue |
-| `created_at` | string | no | Date time string, ISO 8601 formatted, e.g. `2016-03-11T03:45:40Z` |
+| `created_at` | string | no | Date time string, ISO 8601 formatted, e.g. `2016-03-11T03:45:40Z` (requires admin or project owner rights) |
| `due_date` | string | no | Date time string in the format YEAR-MONTH-DAY, e.g. `2016-03-11` |
```bash
@@ -384,7 +384,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` |
+| `updated_at` | string | no | Date time string, ISO 8601 formatted, e.g. `2016-03-11T03:45:40Z` (requires admin or project owner rights) |
| `due_date` | string | no | Date time string in the format YEAR-MONTH-DAY, e.g. `2016-03-11` |
```bash