landed the Member List functionality

This commit is contained in:
2025-10-22 20:49:41 -06:00
parent 11537d5d7f
commit 4f363c8fc8
5 changed files with 407 additions and 1 deletions
+2
View File
@@ -76,6 +76,8 @@ func setupEcho() *echo.Echo {
e.POST("/comm/:cid/join", ui.AmWrap(JoinCommunityWithKey))
e.GET("/comm/:cid/unjoin", ui.AmWrap(UnjoinCommunity))
e.POST("/comm/:cid/unjoin", ui.AmWrap(UnjoinCommunityConfirm))
e.GET("/comm/:cid/members", ui.AmWrap(MemberList))
e.POST("/comm/:cid/members", ui.AmWrap(MemberSearch))
e.GET("/comm/:cid/admin", ui.AmWrap(CommunityAdminMenu))
e.GET("/comm/:cid/admin/profile", ui.AmWrap(CommunityProfileForm))
e.POST("/comm/:cid/admin/profile", ui.AmWrap(EditCommunityProfile))