summary refs log tree commit diff
path: root/api/src/routes/guilds/#guild_id/integrations.ts
blob: 19f685635c9f88c19ea7db78b134f75e21817f25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Router, Response, Request } from "express";
import { Channel, ChannelUpdateEvent, getPermission, emitEvent } from "@fosscord/util";
import { HTTPError } from "@fosscord/util";
import { route } from "@fosscord/api";
import { ChannelModifySchema } from "../../channels/#channel_id";
const router = Router();

//TODO: implement integrations list
router.get("/", route({}), async (req: Request, res: Response) => {
	res.json([]);
});
export default router;