summary refs log tree commit diff
path: root/src/api/routes/guild-recommendations.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/routes/guild-recommendations.ts')
-rw-r--r--src/api/routes/guild-recommendations.ts15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/api/routes/guild-recommendations.ts b/src/api/routes/guild-recommendations.ts
index b851d710..bda37973 100644
--- a/src/api/routes/guild-recommendations.ts
+++ b/src/api/routes/guild-recommendations.ts
@@ -13,12 +13,21 @@ router.get("/", route({}), async (req: Request, res: Response) => {
 	// TODO: implement this with default typeorm query
 	// const guilds = await Guild.find({ where: { features: "DISCOVERABLE" } }); //, take: Math.abs(Number(limit)) });
 
-	const genLoadId = (size: Number) => [...Array(size)].map(() => Math.floor(Math.random() * 16).toString(16)).join('');
+	const genLoadId = (size: Number) =>
+		[...Array(size)]
+			.map(() => Math.floor(Math.random() * 16).toString(16))
+			.join("");
 
 	const guilds = showAllGuilds
 		? await Guild.find({ take: Math.abs(Number(limit || 24)) })
-		: await Guild.find({ where: { features: Like("%DISCOVERABLE%") }, take: Math.abs(Number(limit || 24)) });
-	res.send({ recommended_guilds: guilds, load_id: `server_recs/${genLoadId(32)}` }).status(200);
+		: await Guild.find({
+				where: { features: Like("%DISCOVERABLE%") },
+				take: Math.abs(Number(limit || 24)),
+		  });
+	res.send({
+		recommended_guilds: guilds,
+		load_id: `server_recs/${genLoadId(32)}`,
+	}).status(200);
 });
 
 export default router;