summary refs log tree commit diff
path: root/api/src/routes/guilds
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-15 00:03:05 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-15 00:03:05 +0200
commit0ccc478c54f6e6ae8c8e6574e24ab6796738c83a (patch)
tree5c00a5469e3e3a1c2be788b1138707065bb302bd /api/src/routes/guilds
parent:sparkles: sticker upload (diff)
downloadserver-0ccc478c54f6e6ae8c8e6574e24ab6796738c83a.tar.xz
:bug: fix message sticker sending
Diffstat (limited to 'api/src/routes/guilds')
-rw-r--r--api/src/routes/guilds/#guild_id/premium.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/api/src/routes/guilds/#guild_id/premium.ts b/api/src/routes/guilds/#guild_id/premium.ts
new file mode 100644
index 00000000..75361ac6
--- /dev/null
+++ b/api/src/routes/guilds/#guild_id/premium.ts
@@ -0,0 +1,10 @@
+import { Router, Request, Response } from "express";
+import { route } from "@fosscord/api";
+const router = Router();
+
+router.get("/subscriptions", route({}), async (req: Request, res: Response) => {
+	// TODO:
+	res.json([]);
+});
+
+export default router;