diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-04 13:59:30 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:58 -0300 |
commit | a8b2d7f380a2d87557e278011fb91044de103d02 (patch) | |
tree | ad197ea8dcd5a2b3e44bcad284ce067443d9a195 /spec/fixtures | |
parent | c14ac835756d1d0f4d0f8279759e2b7f75364447 (diff) | |
download | gitlab-ce-a8b2d7f380a2d87557e278011fb91044de103d02.tar.gz |
Return Issue#iid instead of id when listing issues
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/issue.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/fixtures/api/schemas/issue.json b/spec/fixtures/api/schemas/issue.json index 666e0cdf82c..0a9bf4e0fb7 100644 --- a/spec/fixtures/api/schemas/issue.json +++ b/spec/fixtures/api/schemas/issue.json @@ -1,12 +1,12 @@ { "type": "object", "required" : [ - "id", + "iid", "title", "confidential" ], "properties" : { - "id": { "type": "integer" }, + "iid": { "type": "integer" }, "title": { "type": "string" }, "confidential": { "type": "boolean" }, "labels": { |