web: add Username field to AuditEvent

This commit is contained in:
Quaternions 2025-04-13 16:37:22 -07:00
parent 54b0abbbf3
commit 123b0c9a81
Signed by: Quaternions
GPG Key ID: D0DF5964F79AC131

@ -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;