summary refs log tree commit diff
path: root/api/src/routes/stickers/#sticker_id/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/stickers/#sticker_id/index.ts')
-rw-r--r--api/src/routes/stickers/#sticker_id/index.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/api/src/routes/stickers/#sticker_id/index.ts b/api/src/routes/stickers/#sticker_id/index.ts
deleted file mode 100644

index b484a7a1..00000000 --- a/api/src/routes/stickers/#sticker_id/index.ts +++ /dev/null
@@ -1,12 +0,0 @@ -import { Sticker } from "@fosscord/util"; -import { Router, Request, Response } from "express"; -import { route } from "@fosscord/api"; -const router = Router(); - -router.get("/", route({}), async (req: Request, res: Response) => { - const { sticker_id } = req.params; - - res.json(await Sticker.find({ where: { id: sticker_id } })); -}); - -export default router;