feat(audit): integrate auditing for network operations

- Added auditing functionality for network creation, recreation, and deletion actions in the network API.
- Updated the audit log schema to include "network" as a resource type.
- Enhanced the network router to log actions with relevant metadata, improving traceability and accountability for network management operations.
This commit is contained in:
Mauricio Siu
2026-07-27 00:42:05 -06:00
parent ec74035c70
commit 29fcc74ca5
3 changed files with 41 additions and 5 deletions

View File

@@ -91,4 +91,5 @@ export type AuditResourceType =
| "cluster"
| "mount"
| "application"
| "compose";
| "compose"
| "network";