From d31ae47cde2335886e48f5f17e92fe9a6ac8ee0b Mon Sep 17 00:00:00 2001 From: Oskar Date: Sat, 30 Aug 2025 11:52:29 +0200 Subject: [PATCH] Move paths to /game --- web/index.html | 6 +++--- web/main.js | 2 +- web/view.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/index.html b/web/index.html index 73d4798..b880780 100644 --- a/web/index.html +++ b/web/index.html @@ -33,9 +33,9 @@ In the former case: Yay it works! In the latter you should probably contact an admin or a dev nearby :(

Here are a few links for testing:
- View Data, - Door Sign Generator, - Test Checkpoint, + View Data, + Door Sign Generator, + Test Checkpoint,

© 2025 made by Oskar for FaSTTUBe.
diff --git a/web/main.js b/web/main.js index ce1b6dc..57dd22d 100644 --- a/web/main.js +++ b/web/main.js @@ -51,7 +51,7 @@ function sendMainData() { 'name': name } - post("/checkin", payload) + post("/game/checkin", payload) } diff --git a/web/view.js b/web/view.js index 63ed4a2..dcb2796 100644 --- a/web/view.js +++ b/web/view.js @@ -236,7 +236,7 @@ function loadData() { headers: headers } - fetch('/data', fetchopts) + fetch('/game/data', fetchopts) .then(res => { if (Math.floor(res.status / 100) == 2) return res.json()