summary refs log tree commit diff
path: root/api/src/routes/channels/#channel_id
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-01-24 15:22:09 +0100
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-01-24 16:33:29 +0300
commit713b6d07b4528f6d38944ccadbda9f07c87c967f (patch)
treeb375a792ce9ddf1a57365aa329361c6e4def36e1 /api/src/routes/channels/#channel_id
parentSpeed up setup by not installing optional packages (#605) (diff)
downloadserver-713b6d07b4528f6d38944ccadbda9f07c87c967f.tar.xz
Add dummy endpoints to prevent client loading some settings panels indefinitely
Diffstat (limited to 'api/src/routes/channels/#channel_id')
-rw-r--r--api/src/routes/channels/#channel_id/webhooks.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/api/src/routes/channels/#channel_id/webhooks.ts b/api/src/routes/channels/#channel_id/webhooks.ts
index 7b894455..92895da6 100644
--- a/api/src/routes/channels/#channel_id/webhooks.ts
+++ b/api/src/routes/channels/#channel_id/webhooks.ts
@@ -14,6 +14,10 @@ export interface WebhookCreateSchema {
 	name: string;
 	avatar: string;
 }
+//TODO: implement webhooks
+router.get("/", route({}), async (req: Request, res: Response) => {
+	res.json([]);
+});
 
 // TODO: use Image Data Type for avatar instead of String
 router.post("/", route({ body: "WebhookCreateSchema", permission: "MANAGE_WEBHOOKS" }), async (req: Request, res: Response) => {