summary refs log tree commit diff
path: root/src/api/routes/policies/instance/domains.ts
blob: fed0a6270e5ef1889516222d4c5aa987a891931c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { route } from "@fosscord/api";
import { Config } from "@fosscord/util";
import { Request, Response, Router } from "express";
const router = Router();

router.get("/", route({}), async (req: Request, res: Response) => {
	const { cdn, gateway } = Config.get();

	const IdentityForm = {
		cdn: cdn.endpointPublic || process.env.CDN || "http://localhost:3001",
		gateway: gateway.endpointPublic || process.env.GATEWAY || "ws://localhost:3002"
	};

	res.json(IdentityForm);
});

export default router;