From f44f5d7ac2d24ff836c2e1d4b2fa58da04b13052 Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Sun, 25 Sep 2022 18:24:21 +1000 Subject: Refactor to mono-repo + upgrade packages --- api/src/routes/applications/#id/entitlements.ts | 12 ------------ api/src/routes/applications/detectable.ts | 11 ----------- api/src/routes/applications/index.ts | 11 ----------- 3 files changed, 34 deletions(-) delete mode 100644 api/src/routes/applications/#id/entitlements.ts delete mode 100644 api/src/routes/applications/detectable.ts delete mode 100644 api/src/routes/applications/index.ts (limited to 'api/src/routes/applications') diff --git a/api/src/routes/applications/#id/entitlements.ts b/api/src/routes/applications/#id/entitlements.ts deleted file mode 100644 index cfcfe40f..00000000 --- a/api/src/routes/applications/#id/entitlements.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Router, Response, Request } from "express"; -import { route } from "@fosscord/api"; - -const router = Router(); - -router.get("/", route({}), (req: Request, res: Response) => { - // TODO: - //const { exclude_consumed } = req.query; - res.status(200).send([]); -}); - -export default router; diff --git a/api/src/routes/applications/detectable.ts b/api/src/routes/applications/detectable.ts deleted file mode 100644 index 28ce42da..00000000 --- a/api/src/routes/applications/detectable.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Request, Response, Router } from "express"; -import { route } from "@fosscord/api"; - -const router: Router = Router(); - -router.get("/", route({}), async (req: Request, res: Response) => { - //TODO - res.send([]).status(200); -}); - -export default router; diff --git a/api/src/routes/applications/index.ts b/api/src/routes/applications/index.ts deleted file mode 100644 index 28ce42da..00000000 --- a/api/src/routes/applications/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Request, Response, Router } from "express"; -import { route } from "@fosscord/api"; - -const router: Router = Router(); - -router.get("/", route({}), async (req: Request, res: Response) => { - //TODO - res.send([]).status(200); -}); - -export default router; -- cgit 1.5.1