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:
authorSean McGivern <sean@gitlab.com>2019-02-07 12:48:04 +0300
committerSean McGivern <sean@gitlab.com>2019-02-07 12:48:04 +0300
commitd91b96458e59345dd9ad5b9e3d03a12db6c78270 (patch)
tree09e0630be1a56e7b63b84b783aa754b228803656 /spec/fixtures
parent6e51960788f8a431f86b169d648c4cba68c717ae (diff)
parent7c6efc001f90ff07c0d48e81409dc5ecd3739b25 (diff)
Merge branch 'api-group-labels' into 'master'
API group labels Closes #44901 See merge request gitlab-org/gitlab-ce!21368
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/group_labels.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/public_api/v4/group_labels.json b/spec/fixtures/api/schemas/public_api/v4/group_labels.json
new file mode 100644
index 00000000000..f6c327abfdd
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/group_labels.json
@@ -0,0 +1,18 @@
+{
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties" : {
+ "id" : { "type": "integer" },
+ "name" : { "type": "string "},
+ "color" : { "type": "string "},
+ "description" : { "type": "string "},
+ "open_issues_count" : { "type": "integer "},
+ "closed_issues_count" : { "type": "integer "},
+ "open_merge_requests_count" : { "type": "integer "},
+ "subscribed" : { "type": "boolean" },
+ "priority" : { "type": "null" }
+ },
+ "additionalProperties": false
+ }
+}