Merge pull request #952 from fosscord/dev/endpoints-in-ping

Merge /dev/endpoints-in-ping to master
This commit is contained in:
Chris Chrome
2023-01-18 12:14:05 -07:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -23,7 +23,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",
@@ -31,6 +31,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);