summaryrefslogtreecommitdiff
path: root/doc/api/notes.md
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-13 14:24:54 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-13 14:24:54 +0300
commit1355ede49d02e2a7b1715a3ed6bd7389bfedf6bc (patch)
treed1530d3685f4d934f5224fc6cde9305b736c0c71 /doc/api/notes.md
parenta5cbb4cb82a6911b5c1de117ae6ed4cbf667a679 (diff)
downloadgitlab-ce-1355ede49d02e2a7b1715a3ed6bd7389bfedf6bc.tar.gz
Wipe wall notes feature
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'doc/api/notes.md')
-rw-r--r--doc/api/notes.md63
1 files changed, 1 insertions, 62 deletions
diff --git a/doc/api/notes.md b/doc/api/notes.md
index 6d140643fcb..e7f19965a30 100644
--- a/doc/api/notes.md
+++ b/doc/api/notes.md
@@ -1,67 +1,6 @@
# Notes
-Notes can be wall notes or comments on snippets, issues or merge requests.
-
-## Wall
-
-### List project wall notes
-
-Get a list of project wall notes.
-
-```
-GET /projects/:id/notes
-```
-
-Parameters:
-
-+ `id` (required) - The ID of a project
-
-```json
-[
- {
- "id": 522,
- "body": "The solution is rather tricky",
- "attachment": null,
- "author": {
- "id": 1,
- "username": "john_smith",
- "email": "john@example.com",
- "name": "John Smith",
- "state": "active",
- "created_at": "2012-05-23T08:00:58Z"
- },
- "created_at": "2012-11-27T19:16:44Z"
- }
-]
-```
-
-### Get single wall note
-
-Returns a single wall note.
-
-```
-GET /projects/:id/notes/:note_id
-```
-
-Parameters:
-
-+ `id` (required) - The ID of a project
-+ `note_id` (required) - The ID of a wall note
-
-
-### Create new wall note
-
-Creates a new wall note.
-
-```
-POST /projects/:id/notes
-```
-
-Parameters:
-
-+ `id` (required) - The ID of a project
-+ `body` (required) - The content of a note
-
+Notes are comments on snippets, issues or merge requests.
## Issues