From 123b0c9a818fa4aa1255ff84f0649047d74d8d0f Mon Sep 17 00:00:00 2001 From: Quaternions <krakow20@gmail.com> Date: Sun, 13 Apr 2025 16:37:22 -0700 Subject: [PATCH] web: add Username field to AuditEvent --- web/src/app/ts/AuditEvent.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/app/ts/AuditEvent.ts b/web/src/app/ts/AuditEvent.ts index 089f468..18f91a0 100644 --- a/web/src/app/ts/AuditEvent.ts +++ b/web/src/app/ts/AuditEvent.ts @@ -56,6 +56,7 @@ export interface AuditEvent { Id: number; CreatedAt: string; // ISO string, can convert to Date if needed User: number; + Username: string; ResourceType: string; // Assuming this is a string enum or similar ResourceId: number; EventType: AuditEventType;