partial implementation of "read posts"

This commit is contained in:
2025-12-18 23:43:51 -07:00
parent 1233dabfb2
commit 57d664dcb1
4 changed files with 152 additions and 1 deletions
+1
View File
@@ -97,6 +97,7 @@ func setupEcho() *echo.Echo {
confGroup.GET("", ui.AmWrap(Topics))
confGroup.GET("/new_topic", ui.AmWrap(NewTopicForm))
confGroup.POST("/new_topic", ui.AmWrap(NewTopic))
confGroup.GET("/r/:topic", ui.AmWrap(ReadPosts))
return e
}