summary refs log tree commit diff
path: root/api/src
diff options
context:
space:
mode:
authorxnacly <matteogropp@protonmail.com>2021-09-03 21:40:44 +0200
committerxnacly <matteogropp@protonmail.com>2021-09-03 21:40:44 +0200
commit26cc5ac0f901cdaee0207bef3db110eb80a71705 (patch)
tree8e16a8dae7ff9d493f09e409e8cd72854d7901ae /api/src
parentreadded todos (diff)
downloadserver-26cc5ac0f901cdaee0207bef3db110eb80a71705.tar.xz
added first draft of /discoverable-guilds
Diffstat (limited to 'api/src')
-rw-r--r--api/src/routes/discoverable-guilds.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/api/src/routes/discoverable-guilds.ts b/api/src/routes/discoverable-guilds.ts
new file mode 100644

index 00000000..79971917 --- /dev/null +++ b/api/src/routes/discoverable-guilds.ts
@@ -0,0 +1,14 @@ +import { Guild } from "@fosscord/util"; +import { Router, Request, Response } from "express"; +import { In } from "typeorm"; + +const router = Router(); + +router.get("/", async (req: Request, res: Response) => { + const { limit } = req.params; + + const guilds = await Guild.find({ where: { features: "DISCOVERABLE" } }); //, take: Math.abs(Number(limit)) }); + res.send({ guilds: guilds }); +}); + +export default router;