From d6ffc0d4cb5ed5533379f82d04d15ae286fb49b9 Mon Sep 17 00:00:00 2001 From: Noor Date: Wed, 12 Mar 2025 20:11:47 +0000 Subject: [PATCH] Add ListAllAppContracts RPC to BrainAppCli for super admin commands --- proto/sgx/brain.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proto/sgx/brain.proto b/proto/sgx/brain.proto index 273710c..0784f42 100644 --- a/proto/sgx/brain.proto +++ b/proto/sgx/brain.proto @@ -94,6 +94,9 @@ service BrainAppCli { rpc ListAppContracts (ListAppContractsReq) returns (stream AppContract); rpc ListAppNodes (AppNodeFilters) returns (stream AppNodeListResp); rpc GetOneAppNode (AppNodeFilters) returns (AppNodeListResp); + + // super admin commands + rpc ListAllAppContracts (Empty) returns (stream AppContract); } message RegisterAppNodeReq {