Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-10 00:03:00 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 18:58:59 +0300
commit215bfd1c9d50089afc7f9b730a6b46b17730b5fb (patch)
treec43547501afb049924b0c848319c32bc7ab578fb /spec/fixtures/api/schemas/issue.json
parent1b7f137e95ca1cadfcc74fcc0971a0bdf39e9590 (diff)
Returns label priority in JSON when listing lists/issues
Diffstat (limited to 'spec/fixtures/api/schemas/issue.json')
-rw-r--r--spec/fixtures/api/schemas/issue.json6
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/fixtures/api/schemas/issue.json b/spec/fixtures/api/schemas/issue.json
index 3da9b241047..24bac4fef91 100644
--- a/spec/fixtures/api/schemas/issue.json
+++ b/spec/fixtures/api/schemas/issue.json
@@ -14,7 +14,8 @@
"required": [
"id",
"color",
- "title"
+ "title",
+ "priority"
],
"properties": {
"id": { "type": "integer" },
@@ -22,7 +23,8 @@
"type": "string",
"pattern": "^#[0-9A-Fa-f]{3}{1,2}+$"
},
- "title": { "type": "string" }
+ "title": { "type": "string" },
+ "priority": { "type": ["integer", "null"] }
}
},
"assignee": {