diff options
author | Chris Chrome <christophercookman@gmail.com> | 2023-01-15 19:46:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 13:46:41 +1100 |
commit | 8a23ac19f832f9fa4b97126ecae6e7553ce82c47 (patch) | |
tree | 1a6bb412091712ac652045d64341bd62a6b7279c | |
parent | Fix some default value (diff) | |
download | server-8a23ac19f832f9fa4b97126ecae6e7553ce82c47.tar.xz |
Move endpoints from ping -> policies/instance/domains (#933)
-rw-r--r-- | src/api/routes/ping.ts | 9 | ||||
-rw-r--r-- | src/api/routes/policies/instance/domains.ts | 4 |
2 files changed, 4 insertions, 9 deletions
diff --git a/src/api/routes/ping.ts b/src/api/routes/ping.ts index 9bf8c243..3c1da2c3 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, api, cdn, gateway } = Config.get(); + const { general } = Config.get(); res.send({ ping: "pong!", instance: { @@ -19,13 +19,6 @@ 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 ?? "ws://localhost:3001", - }, }, }); }); diff --git a/src/api/routes/policies/instance/domains.ts b/src/api/routes/policies/instance/domains.ts index f22eac17..0acecb9a 100644 --- a/src/api/routes/policies/instance/domains.ts +++ b/src/api/routes/policies/instance/domains.ts @@ -5,7 +5,7 @@ import { config } from "dotenv"; const router = Router(); router.get("/", route({}), async (req: Request, res: Response) => { - const { cdn, gateway } = Config.get(); + const { cdn, gateway, api } = Config.get(); const IdentityForm = { cdn: cdn.endpointPublic || process.env.CDN || "http://localhost:3001", @@ -13,6 +13,8 @@ router.get("/", route({}), async (req: Request, res: Response) => { gateway.endpointPublic || process.env.GATEWAY || "ws://localhost:3002", + defaultApiVersion: api.defaultVersion ?? 9, + apiEndpoint: api.endpointPublic ?? "/api", }; res.json(IdentityForm); |