From 82d15a9f19c2f97afdbf53bd62478a2915298697 Mon Sep 17 00:00:00 2001 From: talksik Date: Tue, 24 Mar 2026 19:23:01 -0700 Subject: [PATCH] fix: prevent deletion of network member This may cause various side effects if there is data in other services which reference this member --- go/cmd/orion/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/cmd/orion/main.go b/go/cmd/orion/main.go index 53ae26e..ca12f9f 100644 --- a/go/cmd/orion/main.go +++ b/go/cmd/orion/main.go @@ -111,7 +111,7 @@ func main() { mux.Handle("GET /networks", withAuth(h.ListNetworks)) mux.Handle("GET /networks/{id}", withAuth(h.GetNetwork)) mux.Handle("POST /networks/{id}/members", withAuth(h.AddMembersToNetwork)) - mux.Handle("DELETE /networks/{id}/members/{humanId}", withAuth(h.RemoveMemberFromNetwork)) + // mux.Handle("DELETE /networks/{id}/members/{humanId}", withAuth(h.RemoveMemberFromNetwork)) // Network Invitations mux.Handle("GET /networks/{id}/invitations", withAuth(h.ListInvitationsForNetwork))