summary refs log tree commit diff
path: root/api/src/routes/applications
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-18 01:49:17 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-18 01:49:17 +0200
commit96c2485bafc2433316db1ed6372b0e083c25ccc6 (patch)
tree09f043415db9dd59ddb5089d3eaadf3895462de2 /api/src/routes/applications
parent:bug: fix body parse treating null not as undefined (except for icons/avatars) (diff)
downloadserver-96c2485bafc2433316db1ed6372b0e083c25ccc6.tar.xz
:pencil: add default route description to all routes
Diffstat (limited to 'api/src/routes/applications')
-rw-r--r--api/src/routes/applications/detectable.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/src/routes/applications/detectable.ts b/api/src/routes/applications/detectable.ts
index e4fbe1e4..411e95bf 100644
--- a/api/src/routes/applications/detectable.ts
+++ b/api/src/routes/applications/detectable.ts
@@ -1,10 +1,11 @@
 import { Request, Response, Router } from "express";
+import { route } from "@fosscord/api";
 
 const router: Router = Router();
 
-router.get("/", async (req: Request, res: Response) => {
+router.get("/", route({}), async (req: Request, res: Response) => {
 	//TODO
 	res.json([]).status(200);
 });
 
-export default router;
\ No newline at end of file
+export default router;