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)