fix responce types

This commit is contained in:
MathMan05
2026-02-05 11:16:23 -06:00
parent b7536c74c4
commit a0930a4dca

View File

@@ -29,7 +29,9 @@ router.post(
requestBody: "TagCreateSchema",
permission: "MANAGE_CHANNELS",
responses: {
201: {},
200: {
body: "Channel",
},
404: {},
},
}),
@@ -71,7 +73,9 @@ router.delete(
route({
permission: "MANAGE_CHANNELS",
responses: {
201: {},
200: {
body: "Channel",
},
404: {},
},
}),