fix owner change typo in main, create new client

This commit is contained in:
2026-04-02 14:49:44 +02:00
parent 5d60c5120f
commit 3d1c7afdd7
2 changed files with 274 additions and 250 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ func main() {
http.HandleFunc("/mod/group/addclients", withCORS(HttpHandleGroupAddClient))
http.HandleFunc("/mod/group/removeclients", withCORS(HttpHandleGroupRemoveClient))
http.HandleFunc("/mod/group/color", withCORS(HttpHandleGroupChangeColor))
http.HandleFunc("/mod/group/color", withCORS(HttpHandleGroupChangeOwner))
http.HandleFunc("/mod/group/owner", withCORS(HttpHandleGroupChangeOwner))
http.HandleFunc("/new/message", withCORS(HttpHandleNewMessage))
http.HandleFunc("/get/groups", withCORS(HttpHandleGroupsGetWithoutMembers))
http.HandleFunc("/get/group/members", withCORS(HttpHandleGroupMembersGet))