landed "move message" functionality

This commit is contained in:
2026-01-29 22:38:27 -07:00
parent 8341a6e4d4
commit 84d734578b
5 changed files with 191 additions and 2 deletions
+1
View File
@@ -114,6 +114,7 @@ func setupEcho() *echo.Echo {
opsGroup.GET("/scribble/:msg", ui.AmWrap(ScribbleMessage))
opsGroup.GET("/nuke/:msg", ui.AmWrap(NukeMessage))
opsGroup.GET("/move/:msg", ui.AmWrap(MoveMessageForm))
opsGroup.POST("/move/:msg", ui.AmWrap(MoveMessage))
opsGroup.GET("/manage", ui.AmWrap(TopicManage))
opsGroup.GET("/subscribe", ui.AmWrap(TopicSetSubscribe))
opsGroup.GET("/rmbozo/:uid", ui.AmWrap(TopicRemoveBozo))