From 672c006cd52d6ec5498abc5b957fd971bb15646f Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Tue, 25 Feb 2025 13:12:29 +0800 Subject: [PATCH] :bug: Fix backward compability --- pkg/internal/http/api/index.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/internal/http/api/index.go b/pkg/internal/http/api/index.go index bd2f5f1..e45f3a7 100644 --- a/pkg/internal/http/api/index.go +++ b/pkg/internal/http/api/index.go @@ -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)