Implemented Collections, reworked SecureIds to prevent duplication across records, renamed files to be consistently plural.
This commit is contained in:
21
API Tests/BGApp/Collections/Create.yml
Normal file
21
API Tests/BGApp/Collections/Create.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
info:
|
||||
name: Create
|
||||
type: http
|
||||
seq: 1
|
||||
|
||||
http:
|
||||
method: POST
|
||||
url: http://localhost:3000/api/collection
|
||||
body:
|
||||
type: json
|
||||
data: |-
|
||||
{
|
||||
"name": "Invited player2"
|
||||
}
|
||||
auth: inherit
|
||||
|
||||
settings:
|
||||
encodeUrl: true
|
||||
timeout: 0
|
||||
followRedirects: true
|
||||
maxRedirects: 5
|
||||
19
API Tests/BGApp/Collections/Delete.yml
Normal file
19
API Tests/BGApp/Collections/Delete.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
info:
|
||||
name: Delete
|
||||
type: http
|
||||
seq: 4
|
||||
|
||||
http:
|
||||
method: DELETE
|
||||
url: http://localhost:3000/api/collection/:id
|
||||
params:
|
||||
- name: id
|
||||
value: bmOe
|
||||
type: path
|
||||
auth: inherit
|
||||
|
||||
settings:
|
||||
encodeUrl: true
|
||||
timeout: 0
|
||||
followRedirects: true
|
||||
maxRedirects: 5
|
||||
19
API Tests/BGApp/Collections/Get.yml
Normal file
19
API Tests/BGApp/Collections/Get.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
info:
|
||||
name: Get
|
||||
type: http
|
||||
seq: 2
|
||||
|
||||
http:
|
||||
method: GET
|
||||
url: http://localhost:3000/api/collection/:id
|
||||
params:
|
||||
- name: id
|
||||
value: ejRe
|
||||
type: path
|
||||
auth: inherit
|
||||
|
||||
settings:
|
||||
encodeUrl: true
|
||||
timeout: 0
|
||||
followRedirects: true
|
||||
maxRedirects: 5
|
||||
15
API Tests/BGApp/Collections/List.yml
Normal file
15
API Tests/BGApp/Collections/List.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
info:
|
||||
name: List
|
||||
type: http
|
||||
seq: 5
|
||||
|
||||
http:
|
||||
method: GET
|
||||
url: http://localhost:3000/api/collection/list
|
||||
auth: inherit
|
||||
|
||||
settings:
|
||||
encodeUrl: true
|
||||
timeout: 0
|
||||
followRedirects: true
|
||||
maxRedirects: 5
|
||||
27
API Tests/BGApp/Collections/Update.yml
Normal file
27
API Tests/BGApp/Collections/Update.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
info:
|
||||
name: Update
|
||||
type: http
|
||||
seq: 3
|
||||
|
||||
http:
|
||||
method: PATCH
|
||||
url: http://localhost:3000/api/collection/:id
|
||||
params:
|
||||
- name: id
|
||||
value: bmOe
|
||||
type: path
|
||||
body:
|
||||
type: json
|
||||
data: |-
|
||||
{
|
||||
"name": "Test Player",
|
||||
"isRatingLocked": true,
|
||||
"canBeMultiple": false
|
||||
}
|
||||
auth: inherit
|
||||
|
||||
settings:
|
||||
encodeUrl: true
|
||||
timeout: 0
|
||||
followRedirects: true
|
||||
maxRedirects: 5
|
||||
7
API Tests/BGApp/Collections/folder.yml
Normal file
7
API Tests/BGApp/Collections/folder.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
info:
|
||||
name: Collections
|
||||
type: folder
|
||||
seq: 6
|
||||
|
||||
request:
|
||||
auth: inherit
|
||||
Reference in New Issue
Block a user