summary refs log tree commit diff
diff options
context:
space:
mode:
authorKuna <65683493+Thesourtimes@users.noreply.github.com>2021-12-18 16:21:05 +0000
committerGitHub <noreply@github.com>2021-12-18 16:21:05 +0000
commit154b2512bcc4369b58f5c3d6a53185a468722c78 (patch)
tree1491c8df6ee7ec65364ac898490b7b0d008c3737
parentGeneral work on API (diff)
downloadserver-154b2512bcc4369b58f5c3d6a53185a468722c78.tar.xz
Update downloads.ts
-rw-r--r--api/src/routes/downloads.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/api/src/routes/downloads.ts b/api/src/routes/downloads.ts
index de261702..ad78b62f 100644
--- a/api/src/routes/downloads.ts
+++ b/api/src/routes/downloads.ts
@@ -8,6 +8,7 @@ router.get("/:branch", route({}), async (req: Request, res: Response) => {
 	const { client } = Config.get();
 	const { branch } = req.params;
 	const { platform } = req.query;
+	//TODO
 
 	if(!platform || !["linux", "osx", "win"].includes(platform.toString())) return res.status(404)