🐛 Provide backwards compability on APIs

This commit is contained in:
LittleSheep 2025-02-23 18:27:55 +08:00
parent c558044646
commit 6d0caa1cde

View File

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