summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/board.json
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-05 16:24:29 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-11 11:39:05 -0300
commitecf4c10e9c395604583820ad01167db34d09d4aa (patch)
tree7734ebceb1167832606dcc5463caacc9d0bb4460 /spec/fixtures/api/schemas/board.json
parentb4b8e0ec9405c4b5d17b53552612397e847e734d (diff)
downloadgitlab-ce-ecf4c10e9c395604583820ad01167db34d09d4aa.tar.gz
Add index action to Projects::BoardsController to return project boards
Diffstat (limited to 'spec/fixtures/api/schemas/board.json')
-rw-r--r--spec/fixtures/api/schemas/board.json12
1 files changed, 12 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
+}