fix(APIAuditLogEntry): user_id is not nullable (#52)

This commit is contained in:
didinele
2020-12-19 16:00:08 +02:00
committed by GitHub
parent ec9002fc56
commit 2b89beb52b

View File

@@ -31,7 +31,7 @@ export interface APIAuditLog {
export interface APIAuditLogEntry {
target_id: string | null;
changes?: APIAuditLogChange[];
user_id: string | null;
user_id: string;
id: string;
action_type: AuditLogEvent;
options?: APIAuditLogOptions;