Notification updates

This commit is contained in:
Eric Gullickson
2025-12-21 19:56:52 -06:00
parent 144f1d5bb0
commit 719c80ecd8
80 changed files with 7552 additions and 678 deletions

View File

@@ -243,7 +243,8 @@ export class AdminRepository {
action: row.action,
resourceType: row.resource_type,
resourceId: row.resource_id,
context: row.context ? JSON.parse(row.context) : undefined,
// JSONB columns are automatically parsed by pg driver - no JSON.parse needed
context: row.context || undefined,
createdAt: new Date(row.created_at),
};
}