summary refs log tree commit diff
path: root/api/src/routes/users/@me/applications
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/users/@me/applications')
-rw-r--r--api/src/routes/users/@me/applications/#app_id/entitlements.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/src/routes/users/@me/applications/#app_id/entitlements.ts b/api/src/routes/users/@me/applications/#app_id/entitlements.ts
index e4fbe1e4..411e95bf 100644
--- a/api/src/routes/users/@me/applications/#app_id/entitlements.ts
+++ b/api/src/routes/users/@me/applications/#app_id/entitlements.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;