From 81d0d1906431f40f3130540d1af85681f5c5f21c Mon Sep 17 00:00:00 2001 From: Sisi Date: Wed, 1 Apr 2026 18:52:36 +0200 Subject: [PATCH] changed http handle func dir for adding members to group --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 4afa317..10a66b1 100644 --- a/main.go +++ b/main.go @@ -23,7 +23,7 @@ func main() { http.HandleFunc("/mod/group/addclients", withCORS(HttpHandleGroupAddClient)) http.HandleFunc("/new/message", withCORS(HttpHandleNewMessage)) http.HandleFunc("/get/groups", withCORS(HttpHandleGroupsGetWithoutMembers)) - http.HandleFunc("/get/groupmembers", withCORS(HttpHandleGroupMembersGet)) + http.HandleFunc("/get/group/members", withCORS(HttpHandleGroupMembersGet)) http.HandleFunc("/ws", ServeWsConnection) log.Println("listening on :8080")