added management of conference custom HTML blocks

This commit is contained in:
2026-02-11 23:16:38 -07:00
parent 0e5a4bc5a3
commit 229de44062
5 changed files with 200 additions and 1 deletions
+2
View File
@@ -119,6 +119,8 @@ func setupEcho() *echo.Echo {
fn = ui.AmWrap(ConferenceMembers)
confGroup.GET("/members", fn)
confGroup.POST("/members", fn)
confGroup.GET("/custom", ui.AmWrap(ConfCustomForm))
confGroup.POST("/custom", ui.AmWrap(ConfCustom))
confGroup.GET("/hotlist", ui.AmWrap(AddToHotlist))
confGroup.GET("/invite", ui.AmWrap(InviteToConference))
confGroup.GET("/r/:topic", ui.AmWrap(ReadPosts), ui.SetTopic)