summary refs log tree commit diff
path: root/api/src/routes/gateway.ts
diff options
context:
space:
mode:
authorHayden Young <hi@hbjy.dev>2021-10-15 11:05:51 +0000
committerGitHub <noreply@github.com>2021-10-15 11:05:51 +0000
commit125f91632f0607903596fff3aeaf67d3df593ec7 (patch)
tree021f8843b2e3490f203429fa0bd1d98f0278ed17 /api/src/routes/gateway.ts
parentchore(merge): remote -> local (diff)
downloadserver-125f91632f0607903596fff3aeaf67d3df593ec7.tar.xz
feat: add tests to gateway routes, split into own routers
Diffstat (limited to 'api/src/routes/gateway.ts')
-rw-r--r--api/src/routes/gateway.ts26
1 files changed, 0 insertions, 26 deletions
diff --git a/api/src/routes/gateway.ts b/api/src/routes/gateway.ts
deleted file mode 100644
index 4b3a0ea6..00000000
--- a/api/src/routes/gateway.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { Config } from "@fosscord/util";
-import { Router, Response, Request } from "express";
-import { route } from "@fosscord/api";
-
-const router = Router();
-
-router.get("/", route({}), (req: Request, res: Response) => {
-	const { endpointPublic } = Config.get().gateway;
-	res.json({ url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002" });
-});
-
-router.get("/bot", route({}), (req: Request, res: Response) => {
-	const { endpointPublic } = Config.get().gateway;
-	res.json({
-		url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002",
-		shards: 1,
-		session_start_limit: {
-			total: 1000,
-			remaining: 999,
-			reset_after: 14400000,
-			max_concurrency: 1
-		}
-	});
-});
-
-export default router;