From c8fece70efc8ab6c11899cd22f684a3fe8594bf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AC=E6=98=8E?= <83812544+Ed1s0nZ@users.noreply.github.com> Date: Thu, 9 Jul 2026 14:35:58 +0800 Subject: [PATCH] Add files via upload --- internal/app/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/app/app.go b/internal/app/app.go index 564c3ddc..4cdcb98b 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -918,6 +918,7 @@ func setupRoutes( protected.GET("/conversations", conversationHandler.ListConversations) protected.GET("/conversations/:id", conversationHandler.GetConversation) protected.GET("/messages/:id/process-details", conversationHandler.GetMessageProcessDetails) + protected.GET("/process-details/:id", conversationHandler.GetProcessDetail) protected.PUT("/conversations/:id", conversationHandler.UpdateConversation) protected.PUT("/conversations/:id/project", conversationHandler.SetConversationProject) protected.DELETE("/conversations/:id", conversationHandler.DeleteConversation)