diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-06-08 17:01:47 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-06-08 17:01:47 +1000 |
commit | 53fe9706c479c0dc006a0e1c4a5f0988248dece8 (patch) | |
tree | 90f3b8ecb93ecf7752f9bde11634e066785e1276 /api | |
parent | Merge remote-tracking branch 'origin/fix/claim_accounts' into slowcord (diff) | |
parent | Expose general instance information via api /ping route (diff) | |
download | server-53fe9706c479c0dc006a0e1c4a5f0988248dece8.tar.xz |
Merge branch 'feat/pingInformation' into slowcord
Diffstat (limited to 'api')
-rw-r--r-- | api/src/routes/ping.ts | 18 |
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; |