diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-05 16:24:29 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-11 11:39:05 -0300 |
commit | ecf4c10e9c395604583820ad01167db34d09d4aa (patch) | |
tree | 7734ebceb1167832606dcc5463caacc9d0bb4460 /spec/fixtures | |
parent | b4b8e0ec9405c4b5d17b53552612397e847e734d (diff) | |
download | gitlab-ce-ecf4c10e9c395604583820ad01167db34d09d4aa.tar.gz |
Add index action to Projects::BoardsController to return project boards
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/board.json | 12 | ||||
-rw-r--r-- | spec/fixtures/api/schemas/boards.json | 4 |
2 files changed, 16 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/board.json b/spec/fixtures/api/schemas/board.json new file mode 100644 index 00000000000..6c6e2bee8cb --- /dev/null +++ b/spec/fixtures/api/schemas/board.json @@ -0,0 +1,12 @@ +{ + "type": "object", + "required" : [ + "id", + "name" + ], + "properties" : { + "id": { "type": "integer" }, + "name": { "type": "string" } + }, + "additionalProperties": false +} diff --git a/spec/fixtures/api/schemas/boards.json b/spec/fixtures/api/schemas/boards.json new file mode 100644 index 00000000000..117564ef77a --- /dev/null +++ b/spec/fixtures/api/schemas/boards.json @@ -0,0 +1,4 @@ +{ + "type": "array", + "items": { "$ref": "board.json" } +} |