summary refs log tree commit diff
path: root/api
diff options
context:
space:
mode:
authorxnacly <matteogropp@protonmail.com>2021-09-03 23:31:56 +0200
committerxnacly <matteogropp@protonmail.com>2021-09-03 23:31:56 +0200
commit25060ed06eb3fdc2c77b8484f34bdbdf58f1f08b (patch)
tree8a93e8ebbb26961e6e44fdef33e6999621189792 /api
parentadded first draft of /discoverable-guilds (diff)
downloadserver-25060ed06eb3fdc2c77b8484f34bdbdf58f1f08b.tar.xz
fixed /discoverable-guilds
Diffstat (limited to 'api')
-rw-r--r--api/src/routes/discoverable-guilds.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/api/src/routes/discoverable-guilds.ts b/api/src/routes/discoverable-guilds.ts
index 79971917..0808727f 100644
--- a/api/src/routes/discoverable-guilds.ts
+++ b/api/src/routes/discoverable-guilds.ts
@@ -7,7 +7,10 @@ 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)) });
+	// ! this only works using SQL querys
+	// TODO: implement this with default typeorm query
+	// const guilds = await Guild.find({ where: { features: "DISCOVERABLE" } }); //, take: Math.abs(Number(limit)) });
+	const guilds = await Guild.find({ where: `"features" LIKE 'COMMUNITY'`, take: Math.abs(Number(limit)) });
 	res.send({ guilds: guilds });
 });