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:
authorWinnie Hellmann <winnie@gitlab.com>2019-07-12 09:31:17 +0300
committerJan Provaznik <jprovaznik@gitlab.com>2019-07-12 09:31:17 +0300
commit2e6225538f6e065dda61c04c9c9e76fbe0b23646 (patch)
tree2de903022b2e9fd9a1b97d6dfb72276c31384a51 /spec/fixtures
parent4c6bdd23b32940bc1687ef7879821cd8772340b2 (diff)
Split and prepend CurrentBoardEntity
(cherry picked from commit 1e8bdd01bff96122fe80c51fa8f024f18675b58b)
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/current-board.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/current-board.json b/spec/fixtures/api/schemas/current-board.json
new file mode 100644
index 00000000000..2ddc038e908
--- /dev/null
+++ b/spec/fixtures/api/schemas/current-board.json
@@ -0,0 +1,16 @@
+{
+ "type": "object",
+ "allOf": [
+ { "$ref": "board.json" },
+ {
+ "required" : [
+ "id",
+ "name"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "name": { "type": "string" }
+ }
+ }
+ ]
+}