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/notes.md | |
parent | 6f555990aa7002f45ec713ed0811f0c845245459 (diff) | |
download | gitlab-ce-7bc048616217b6cd1023c2972f882cf5d4a20309.tar.gz |
Expose noteable_iid in Note
Diffstat (limited to 'doc/api/notes.md')
-rw-r--r-- | doc/api/notes.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/api/notes.md b/doc/api/notes.md index 388e6989df2..e627369e17b 100644 --- a/doc/api/notes.md +++ b/doc/api/notes.md @@ -35,7 +35,8 @@ Parameters: "updated_at": "2013-10-02T10:22:45Z", "system": true, "noteable_id": 377, - "noteable_type": "Issue" + "noteable_type": "Issue", + "noteable_iid": 377 }, { "id": 305, @@ -53,7 +54,8 @@ Parameters: "updated_at": "2013-10-02T09:56:03Z", "system": true, "noteable_id": 121, - "noteable_type": "Issue" + "noteable_type": "Issue", + "noteable_iid": 121 } ] ``` @@ -267,7 +269,8 @@ Parameters: "updated_at": "2013-10-02T08:57:14Z", "system": false, "noteable_id": 2, - "noteable_type": "MergeRequest" + "noteable_type": "MergeRequest", + "noteable_iid": 2 } ``` |