Newer
Older
percord / api / src / routes / policies / instance / domains.ts
@Thesourtimes Thesourtimes on 18 Nov 2021 561 bytes Fix the minor issues on route
import { Router, Request, Response } from "express";
import { route } from "@fosscord/api";
import { Config } from "@fosscord/util";
import { config } from "dotenv"
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;