diff --git a/pkg/internal/http/api/index.go b/pkg/internal/http/api/index.go index 57544f3..bd2f5f1 100644 --- a/pkg/internal/http/api/index.go +++ b/pkg/internal/http/api/index.go @@ -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)