From 754d8dbf64fc242edca3696bf5627e83c150f2bb Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Sat, 14 Jan 2023 19:55:19 +0100 Subject: Add basic info in ping Signed-off-by: TheArcaneBrony --- src/api/routes/ping.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/api') diff --git a/src/api/routes/ping.ts b/src/api/routes/ping.ts index 3c1da2c3..ff79399c 100644 --- a/src/api/routes/ping.ts +++ b/src/api/routes/ping.ts @@ -5,7 +5,7 @@ import { Config } from "@fosscord/util"; const router = Router(); router.get("/", route({}), (req: Request, res: Response) => { - const { general } = Config.get(); + const { general, api, cdn, gateway } = Config.get(); res.send({ ping: "pong!", instance: { @@ -19,6 +19,12 @@ router.get("/", route({}), (req: Request, res: Response) => { frontPage: general.frontPage, tosPage: general.tosPage, + endpoints: { + defaultApiVersion: api.defaultVersion ?? 9, + apiEndpoint: api.endpointPublic ?? "/api", + cdnEndpoint: cdn.endpointPublic ?? "/", + gatewayEndpoint: gateway.endpointPublic ?? "/", + }, }, }); }); -- cgit 1.5.1