From 2f75b2865bb93aaaa9605e9a9e67c1082fc009cc Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Sun, 26 Apr 2026 11:06:07 +0200 Subject: [PATCH] feat(license): add AuditCategory.LICENSE Tasks downstream (LicenseService, LicenseEnforcer) audit under this category for install_license / replace_license / reject_license / revalidate_license / cap_exceeded actions. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../java/com/cameleer/server/core/admin/AuditCategory.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cameleer-server-core/src/main/java/com/cameleer/server/core/admin/AuditCategory.java b/cameleer-server-core/src/main/java/com/cameleer/server/core/admin/AuditCategory.java index 7219f321..48316421 100644 --- a/cameleer-server-core/src/main/java/com/cameleer/server/core/admin/AuditCategory.java +++ b/cameleer-server-core/src/main/java/com/cameleer/server/core/admin/AuditCategory.java @@ -4,5 +4,6 @@ public enum AuditCategory { INFRA, AUTH, USER_MGMT, CONFIG, RBAC, AGENT, OUTBOUND_CONNECTION_CHANGE, OUTBOUND_HTTP_TRUST_CHANGE, ALERT_RULE_CHANGE, ALERT_SILENCE_CHANGE, - DEPLOYMENT + DEPLOYMENT, + LICENSE }