summary refs log tree commit diff
path: root/api/src/routes/applications/#id/entitlements.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/applications/#id/entitlements.ts')
-rw-r--r--api/src/routes/applications/#id/entitlements.ts12
1 files changed, 0 insertions, 12 deletions
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;