Permissions, RateControl and Auditing

This commit is contained in:
2026-07-16 14:01:08 +03:00
parent 3a1b95dbc5
commit ba64a0c95a
62 changed files with 6095 additions and 2366 deletions
+4 -4
View File
@@ -847,10 +847,10 @@ public class Warehouse
else
return (T)store;
}
catch (Exception ex)
catch
{
Remove(store);
throw ex;
throw;
}
}
}
@@ -946,10 +946,10 @@ public class Warehouse
StoreConnected?.Invoke(resource as IStore);
}
catch (Exception ex)
catch
{
Remove(resource);
throw ex;
throw;
}
return resource;