Add files via upload

This commit is contained in:
公明
2026-03-31 22:13:47 +08:00
committed by GitHub
parent 60fa266af6
commit 1eb5133492
3 changed files with 101 additions and 1 deletions
+1
View File
@@ -661,6 +661,7 @@ func setupRoutes(
protected.POST("/conversations", conversationHandler.CreateConversation)
protected.GET("/conversations", conversationHandler.ListConversations)
protected.GET("/conversations/:id", conversationHandler.GetConversation)
protected.GET("/messages/:id/process-details", conversationHandler.GetMessageProcessDetails)
protected.PUT("/conversations/:id", conversationHandler.UpdateConversation)
protected.DELETE("/conversations/:id", conversationHandler.DeleteConversation)
protected.PUT("/conversations/:id/pinned", groupHandler.UpdateConversationPinned)