summary refs log tree commit diff
path: root/api/src/routes/gateway/index.ts
diff options
context:
space:
mode:
authorSamuel <34555296+Flam3rboy@users.noreply.github.com>2021-10-15 15:53:15 +0200
committerGitHub <noreply@github.com>2021-10-15 15:53:15 +0200
commita5811c1c0924a2c33f92814314302efab0fecfc5 (patch)
tree719d6131dc172d7db5bf022f16356c3c846daba5 /api/src/routes/gateway/index.ts
parentMerge pull request #464 from hbjydev/api-snippets (diff)
parentfeat: add tests to gateway routes, split into own routers (diff)
downloadserver-a5811c1c0924a2c33f92814314302efab0fecfc5.tar.xz
Merge pull request #462 from hbjydev/unit-tests-expanded
Add unit tests for Gateway endpoints
Diffstat (limited to '')
-rw-r--r--api/src/routes/gateway/index.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/api/src/routes/gateway/index.ts b/api/src/routes/gateway/index.ts
new file mode 100644

index 00000000..9bad7478 --- /dev/null +++ b/api/src/routes/gateway/index.ts
@@ -0,0 +1,24 @@ +import { Config } from "@fosscord/util"; +import { Router, Response, Request } from "express"; +import { route, RouteOptions } from "@fosscord/api"; + +const router = Router(); + +export interface GatewayResponse { + url: string; +} + +const options: RouteOptions = { + test: { + response: { + body: "GatewayResponse" + } + } +}; + +router.get("/", route(options), (req: Request, res: Response) => { + const { endpointPublic } = Config.get().gateway; + res.json({ url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002" }); +}); + +export default router;