summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-08 22:51:01 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-09 23:28:27 +0200
commit33158d02de721fb617df0f13c95e66ce890a2362 (patch)
tree0f636326b95f7b5d4b25e6d8881681894d5bd2c2
parentUse deep merge everywhere (diff)
downloadserver-33158d02de721fb617df0f13c95e66ce890a2362.tar.xz
Remove todo line that has been implemented.
-rw-r--r--api/src/routes/discoverable-guilds.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/api/src/routes/discoverable-guilds.ts b/api/src/routes/discoverable-guilds.ts
index 2d1e60b6..35ecf28c 100644
--- a/api/src/routes/discoverable-guilds.ts
+++ b/api/src/routes/discoverable-guilds.ts
@@ -11,7 +11,6 @@ router.get("/", route({}), async (req: Request, res: Response) => {
 	let showAllGuilds = Config.get().guild.discovery.showAllGuilds;
 	let configLimit = Config.get().guild.discovery.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)) });
 	let guilds;
 	if (categories == undefined) {