summary refs log tree commit diff
path: root/api/src/routes/gateway/index.ts
blob: 9bad7478000453a7ce4bb72827ca31b644c8dd6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { Config } from "@fosscord/util";
import { Router, Response, Request } from "express";
import { route, RouteOptions } from "@fosscord/api";

const router = Router();

export interface GatewayResponse {
	url: string;
}

const options: RouteOptions = {
	test: {
		response: {
			body: "GatewayResponse"
		}
	}
};

router.get("/", route(options), (req: Request, res: Response) => {
	const { endpointPublic } = Config.get().gateway;
	res.json({ url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002" });
});

export default router;