🐛 Fix backward compability

This commit is contained in:
LittleSheep 2025-02-25 13:12:29 +08:00
parent 7566720420
commit 672c006cd5

View File

@ -26,6 +26,7 @@ func MapAPIs(app *fiber.App, baseURL string) {
channels.Get("/:channel/members/me", getChannelIdentity)
channels.Put("/:channel/me", editChannelIdentity)
channels.Put("/:channel/me/notify", editChannelNotifyLevel)
channels.Put("/:channel/members/me/notify", editChannelNotifyLevel)
channels.Delete("/:channel/me", deleteChannelIdentity)
channels.Post("/", createChannel)