Tidied up Bruno files.

This commit is contained in:
jd
2026-02-21 17:56:28 +00:00
parent 407043c5be
commit ed942060a2
28 changed files with 256 additions and 95 deletions

View File

@@ -5,15 +5,20 @@ info:
http:
method: POST
url: http://localhost:3000/api/player
url: "{{BASE_URL}}/api/player"
body:
type: json
data: |-
{
"name": "Invited player2"
"name": "{{Name}}"
}
auth: inherit
runtime:
variables:
- name: Name
value: Test
settings:
encodeUrl: true
timeout: 0

View File

@@ -5,13 +5,14 @@ info:
http:
method: DELETE
url: http://localhost:3000/api/player/:id
params:
- name: id
value: bmOe
type: path
url: "{{BASE_URL}}/api/player/{{PlayerID}}"
auth: inherit
runtime:
variables:
- name: PlayerID
value: ""
settings:
encodeUrl: true
timeout: 0

View File

@@ -5,13 +5,14 @@ info:
http:
method: GET
url: http://localhost:3000/api/player/:id
params:
- name: id
value: ejRe
type: path
url: "{{BASE_URL}}/api/player/{{PlayerID}}"
auth: inherit
runtime:
variables:
- name: PlayerID
value: ""
settings:
encodeUrl: true
timeout: 0

View File

@@ -5,7 +5,7 @@ info:
http:
method: GET
url: http://localhost:3000/api/player/list
url: "{{BASE_URL}}/api/player/list"
auth: inherit
settings:

View File

@@ -5,21 +5,24 @@ info:
http:
method: PATCH
url: http://localhost:3000/api/player/:id
params:
- name: id
value: bmOe
type: path
url: "{{BASE_URL}}/api/player/{{PlayerID}}"
body:
type: json
data: |-
{
"name": "Test Player",
"isRatingLocked": true,
"name": "{{Name}}",
"isRatingLocked": false,
"canBeMultiple": false
}
auth: inherit
runtime:
variables:
- name: Name
value: Foo
- name: PlayerID
value: ""
settings:
encodeUrl: true
timeout: 0