From 3ef71f50441971f302a1da282fa1871a5d70538e Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 15 Apr 2025 11:04:49 +0200 Subject: [PATCH] feat(assist-api): fixed the http method --- ee/backend/pkg/assist/api/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/backend/pkg/assist/api/handlers.go b/ee/backend/pkg/assist/api/handlers.go index 945562441..7c6b9e689 100644 --- a/ee/backend/pkg/assist/api/handlers.go +++ b/ee/backend/pkg/assist/api/handlers.go @@ -41,7 +41,7 @@ func (e *handlersImpl) GetAll() []*api.Description { return []*api.Description{ {keyPrefix + "/sockets-list/{projectKey}/autocomplete", e.autocomplete, "GET"}, // event search with live=true {keyPrefix + "/sockets-list/{projectKey}/{sessionId}", e.socketsListByProject, "GET"}, // is_live for getReplay call - {keyPrefix + "/sockets-live/{projectKey}", e.socketsLiveByProject, "GET"}, // handler /{projectId}/assist/sessions for co-browser + {keyPrefix + "/sockets-live/{projectKey}", e.socketsLiveByProject, "POST"}, // handler /{projectId}/assist/sessions for co-browser {keyPrefix + "/sockets-live/{projectKey}/{sessionId}", e.socketsLiveBySession, "GET"}, // for get_live_session (with data) and for session_exists {"/v1/ping", e.ping, "GET"}, }