summary refs log tree commit diff
path: root/src/api/routes/stickers/#sticker_id/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/routes/stickers/#sticker_id/index.ts')
-rw-r--r--src/api/routes/stickers/#sticker_id/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/api/routes/stickers/#sticker_id/index.ts b/src/api/routes/stickers/#sticker_id/index.ts
new file mode 100644
index 00000000..b484a7a1
--- /dev/null
+++ b/src/api/routes/stickers/#sticker_id/index.ts
@@ -0,0 +1,12 @@
+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;