App engine features #1

Merged
noormohammedb merged 4 commits from app_engine_features into staging 2025-04-15 11:40:29 +00:00
Showing only changes of commit 3e3fde2f65 - Show all commits

@ -552,7 +552,9 @@ impl BrainData {
.operators .operators
.get_mut(operator) .get_mut(operator)
.ok_or(Error::AccessDenied)?; .ok_or(Error::AccessDenied)?;
if !operator_data.vm_nodes.contains(&node_pubkey) { if !(operator_data.vm_nodes.contains(&node_pubkey)
|| operator_data.app_nodes.contains(&node_pubkey))
{
return Err(Error::AccessDenied); return Err(Error::AccessDenied);
} }