1 files changed, 5 insertions, 4 deletions
diff --git a/api/src/routes/store/applications.ts b/api/src/routes/store/applications.ts
index 69cd716d..352c1752 100644
--- a/api/src/routes/store/applications.ts
+++ b/api/src/routes/store/applications.ts
@@ -1,11 +1,12 @@
import { Request, Response, Router } from "express";
+import { route } from "@fosscord/api";
const router: Router = Router();
-router.get("/applications/:id", async (req: Request, res: Response) => {
- //TODO
- const { id } = req.params;
+router.get("/applications/:id", route({}), async (req: Request, res: Response) => {
+ //TODO
+ const { id } = req.params;
res.json([]).status(200);
});
-export default router;
\ No newline at end of file
+export default router;
|