diff options
author | sue445 <sue445@sue445.net> | 2017-08-08 11:31:55 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-08-08 11:31:55 +0000 |
commit | 7bc048616217b6cd1023c2972f882cf5d4a20309 (patch) | |
tree | d2a01dba74b23d3bb812b466bcf71ca77cd33bad /doc/api/events.md | |
parent | 6f555990aa7002f45ec713ed0811f0c845245459 (diff) | |
download | gitlab-ce-7bc048616217b6cd1023c2972f882cf5d4a20309.tar.gz |
Expose noteable_iid in Note
Diffstat (limited to 'doc/api/events.md')
-rw-r--r-- | doc/api/events.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/api/events.md b/doc/api/events.md index 6e530317f6c..3d5170f3f1e 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -338,6 +338,45 @@ Example response: "web_url":"https://gitlab.example.com/ted" }, "author_username":"ted" + }, + { + "title": null, + "project_id": 1, + "action_name": "commented on", + "target_id": 1312, + "target_iid": 1312, + "target_type": "Note", + "author_id": 1, + "data": null, + "target_title": null, + "created_at": "2015-12-04T10:33:58.089Z", + "note": { + "id": 1312, + "body": "What an awesome day!", + "attachment": null, + "author": { + "name": "Dmitriy Zaporozhets", + "username": "root", + "id": 1, + "state": "active", + "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png", + "web_url": "http://localhost:3000/root" + }, + "created_at": "2015-12-04T10:33:56.698Z", + "system": false, + "noteable_id": 377, + "noteable_type": "Issue", + "noteable_iid": 377 + }, + "author": { + "name": "Dmitriy Zaporozhets", + "username": "root", + "id": 1, + "state": "active", + "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png", + "web_url": "http://localhost:3000/root" + }, + "author_username": "root" } ] ``` |