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)