1 files changed, 3 insertions, 1 deletions
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);
|