summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-06-08 17:01:47 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-06-08 17:01:47 +1000
commit53fe9706c479c0dc006a0e1c4a5f0988248dece8 (patch)
tree90f3b8ecb93ecf7752f9bde11634e066785e1276
parentMerge remote-tracking branch 'origin/fix/claim_accounts' into slowcord (diff)
parentExpose general instance information via api /ping route (diff)
downloadserver-53fe9706c479c0dc006a0e1c4a5f0988248dece8.tar.xz
Merge branch 'feat/pingInformation' into slowcord
-rw-r--r--api/src/routes/ping.ts18
1 files changed, 17 insertions, 1 deletions
diff --git a/api/src/routes/ping.ts b/api/src/routes/ping.ts

index 5cdea705..3c1da2c3 100644 --- a/api/src/routes/ping.ts +++ b/api/src/routes/ping.ts
@@ -1,10 +1,26 @@ import { Router, Response, Request } from "express"; import { route } from "@fosscord/api"; +import { Config } from "@fosscord/util"; const router = Router(); router.get("/", route({}), (req: Request, res: Response) => { - res.send("pong"); + const { general } = Config.get(); + res.send({ + ping: "pong!", + instance: { + id: general.instanceId, + name: general.instanceName, + description: general.instanceDescription, + image: general.image, + + correspondenceEmail: general.correspondenceEmail, + correspondenceUserID: general.correspondenceUserID, + + frontPage: general.frontPage, + tosPage: general.tosPage, + }, + }); }); export default router;