diff options
author | Thesourtimes <cckhmck@gmail.com> | 2021-12-15 05:41:21 +0300 |
---|---|---|
committer | Thesourtimes <cckhmck@gmail.com> | 2021-12-15 05:41:21 +0300 |
commit | 87f7c9b7a3de0db32e9f49cd1781efe2f8300632 (patch) | |
tree | 98b4c8c6def2380ed0841bf3b37ea2dd16349953 /api/src | |
parent | Add helpful links to issues config (diff) | |
download | server-87f7c9b7a3de0db32e9f49cd1781efe2f8300632.tar.xz |
Make the test client togglable
Diffstat (limited to 'api/src')
-rw-r--r-- | api/src/middlewares/TestClient.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/api/src/middlewares/TestClient.ts b/api/src/middlewares/TestClient.ts index 6167d9fd..7139b59c 100644 --- a/api/src/middlewares/TestClient.ts +++ b/api/src/middlewares/TestClient.ts @@ -84,12 +84,14 @@ export default function TestClient(app: Application) { return res.send(buffer); }); app.get("*", (req: Request, res: Response) => { + const { useTestClient } = Config.get().client; res.set("Cache-Control", "public, max-age=" + 60 * 60 * 24); res.set("content-type", "text/html"); - if(req.url.startsWith("/api")) return; + if(req.url.startsWith("/api")) return; + if(!useTestClient) return res.send("Test client is disabled on this instance. Use a stand-alone client to connect this instance.") if (req.url.startsWith("/invite")) return res.send(html.replace("9b2b7f0632acd0c5e781", "9f24f709a3de09b67c49")); - + res.send(html); }); } \ No newline at end of file |