summaryrefslogtreecommitdiff
path: root/spec/fixtures
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-04 13:59:30 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 12:58:58 -0300
commita8b2d7f380a2d87557e278011fb91044de103d02 (patch)
treead197ea8dcd5a2b3e44bcad284ce067443d9a195 /spec/fixtures
parentc14ac835756d1d0f4d0f8279759e2b7f75364447 (diff)
downloadgitlab-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.json4
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": {