(log: DbAuditLog)
| 26 | } |
| 27 | |
| 28 | export function formatAuditLogEntry(log: DbAuditLog): EnterpriseAuditLogEntry { |
| 29 | return { |
| 30 | id: log.id, |
| 31 | workspaceId: log.workspaceId, |
| 32 | actorId: log.actorId, |
| 33 | actorName: log.actorName, |
| 34 | actorEmail: log.actorEmail, |
| 35 | action: log.action, |
| 36 | resourceType: log.resourceType, |
| 37 | resourceId: log.resourceId, |
| 38 | resourceName: log.resourceName, |
| 39 | description: log.description, |
| 40 | metadata: log.metadata, |
| 41 | createdAt: log.createdAt.toISOString(), |
| 42 | } |
| 43 | } |