From f32741d860d224c1fbb3709d292efa4bcf6bc91c Mon Sep 17 00:00:00 2001 From: Janis Date: Sat, 1 Nov 2025 13:38:51 +0100 Subject: [PATCH] chore(config): updated Bruno collection --- bruno/KnockOutWhist/Game/Create Game.bru | 16 ++++++++++++++++ bruno/KnockOutWhist/Game/Get Game.bru | 20 ++++++++++++++++++++ bruno/KnockOutWhist/Game/Start Game.bru | 20 ++++++++++++++++++++ bruno/KnockOutWhist/Game/folder.bru | 8 ++++++++ bruno/KnockOutWhist/collection.bru | 0 5 files changed, 64 insertions(+) create mode 100644 bruno/KnockOutWhist/Game/Create Game.bru create mode 100644 bruno/KnockOutWhist/Game/Get Game.bru create mode 100644 bruno/KnockOutWhist/Game/Start Game.bru create mode 100644 bruno/KnockOutWhist/Game/folder.bru create mode 100644 bruno/KnockOutWhist/collection.bru diff --git a/bruno/KnockOutWhist/Game/Create Game.bru b/bruno/KnockOutWhist/Game/Create Game.bru new file mode 100644 index 0000000..2402878 --- /dev/null +++ b/bruno/KnockOutWhist/Game/Create Game.bru @@ -0,0 +1,16 @@ +meta { + name: Create Game + type: http + seq: 1 +} + +post { + url: {{host}}/createGame + body: none + auth: inherit +} + +settings { + encodeUrl: true + timeout: 0 +} diff --git a/bruno/KnockOutWhist/Game/Get Game.bru b/bruno/KnockOutWhist/Game/Get Game.bru new file mode 100644 index 0000000..6b6d6af --- /dev/null +++ b/bruno/KnockOutWhist/Game/Get Game.bru @@ -0,0 +1,20 @@ +meta { + name: Get Game + type: http + seq: 2 +} + +get { + url: {{host}}/game/:id + body: none + auth: inherit +} + +params:path { + id: uZDNZA +} + +settings { + encodeUrl: true + timeout: 0 +} diff --git a/bruno/KnockOutWhist/Game/Start Game.bru b/bruno/KnockOutWhist/Game/Start Game.bru new file mode 100644 index 0000000..cc231bf --- /dev/null +++ b/bruno/KnockOutWhist/Game/Start Game.bru @@ -0,0 +1,20 @@ +meta { + name: Start Game + type: http + seq: 3 +} + +post { + url: {{host}}/game/:id/start + body: none + auth: inherit +} + +params:path { + id: uZDNZA +} + +settings { + encodeUrl: true + timeout: 0 +} diff --git a/bruno/KnockOutWhist/Game/folder.bru b/bruno/KnockOutWhist/Game/folder.bru new file mode 100644 index 0000000..a279bdf --- /dev/null +++ b/bruno/KnockOutWhist/Game/folder.bru @@ -0,0 +1,8 @@ +meta { + name: Game + seq: 3 +} + +auth { + mode: inherit +} diff --git a/bruno/KnockOutWhist/collection.bru b/bruno/KnockOutWhist/collection.bru new file mode 100644 index 0000000..e69de29