diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-04-06 15:52:16 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-04-13 14:26:40 +0200 |
commit | ea2193aaeb1127746dc78d2dda7037d998911662 (patch) | |
tree | 9acacdad718dd53586e620d66403ffb54009e7a7 /doc/api/README.md | |
parent | 861e685e1853d45dea83bc1d06ebd639b120f36c (diff) | |
download | gitlab-ce-ea2193aaeb1127746dc78d2dda7037d998911662.tar.gz |
API: Star and unstar a project
Diffstat (limited to 'doc/api/README.md')
-rw-r--r-- | doc/api/README.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/README.md b/doc/api/README.md index 7629ef294ac..3a8fa6cebd1 100644 --- a/doc/api/README.md +++ b/doc/api/README.md @@ -108,6 +108,7 @@ The following table shows the possible return codes for API requests. | ------------- | ----------- | | `200 OK` | The `GET`, `PUT` or `DELETE` request was successful, the resource(s) itself is returned as JSON. | | `201 Created` | The `POST` request was successful and the resource is returned as JSON. | +| `304 Not Modified` | Indicates that the resource has not been modified since the last request. | | `400 Bad Request` | A required attribute of the API request is missing, e.g., the title of an issue is not given. | | `401 Unauthorized` | The user is not authenticated, a valid [user token](#authentication) is necessary. | | `403 Forbidden` | The request is not allowed, e.g., the user is not allowed to delete a project. | |