From 17341bfde1318be1d887a1aaad04b88119f22496 Mon Sep 17 00:00:00 2001 From: Ida Dittrich Date: Mon, 9 Mar 2026 11:15:29 +0100 Subject: [PATCH] fix:removed old route fallback --- modules/features/chatplayground/mainChatplayground.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/features/chatplayground/mainChatplayground.py b/modules/features/chatplayground/mainChatplayground.py index 269f74d5..d5275a5f 100644 --- a/modules/features/chatplayground/mainChatplayground.py +++ b/modules/features/chatplayground/mainChatplayground.py @@ -39,12 +39,12 @@ RESOURCE_OBJECTS = [ { "objectKey": "resource.feature.chatplayground.stop", "label": {"en": "Stop Workflow", "de": "Workflow stoppen", "fr": "Arrêter workflow"}, - "meta": {"endpoint": "/api/chatplayground/{instanceId}/{workflowId}/stop", "method": "POST"} + "meta": {"endpoint": "/api/chatplayground/{instanceId}/workflows/{workflowId}/stop", "method": "POST"} }, { "objectKey": "resource.feature.chatplayground.chatData", "label": {"en": "Get Chat Data", "de": "Chat-Daten abrufen", "fr": "Récupérer données chat"}, - "meta": {"endpoint": "/api/chatplayground/{instanceId}/{workflowId}/chatData", "method": "GET"} + "meta": {"endpoint": "/api/chatplayground/{instanceId}/workflows/{workflowId}/chatData", "method": "GET"} }, ]