fix(folders): logging, files-rescue, hard-delete wiring, audit logs
- A6: logger import + warn calls in document-folders.service.ts - G-C1: re-parent files (not just documents) in deleteFolderSoftRescue - A4: importer sets files.folder_id (was only setting documents.folder_id) - A7 + G-C3: demote system folder + nullify scratchpadNotes in client-hard-delete - Defense-in-depth portId on folder-move UPDATE - Audit logs for createFolder, syncEntityFolderName, archive/restore suffix - portId in companies/yachts archive log context - Row-count telemetry in backfill CLI Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -168,7 +168,7 @@ export async function updateYacht(
|
||||
|
||||
if (data.name !== undefined) {
|
||||
await syncEntityFolderName(portId, 'yacht', id, meta.userId).catch((err) => {
|
||||
logger.warn({ err, yachtId: id }, 'Failed to sync yacht folder name');
|
||||
logger.warn({ err, yachtId: id, portId }, 'Failed to sync yacht folder name');
|
||||
});
|
||||
}
|
||||
|
||||
@@ -193,8 +193,8 @@ export async function archiveYacht(id: string, portId: string, meta: AuditMeta)
|
||||
.set({ archivedAt: new Date() })
|
||||
.where(and(eq(yachts.id, id), eq(yachts.portId, portId)));
|
||||
|
||||
void applyEntityArchivedSuffix(portId, 'yacht', id).catch((err) => {
|
||||
logger.warn({ err, yachtId: id }, 'Failed to apply archived suffix to yacht folder');
|
||||
void applyEntityArchivedSuffix(portId, 'yacht', id, meta.userId).catch((err) => {
|
||||
logger.warn({ err, yachtId: id, portId }, 'Failed to apply archived suffix to yacht folder');
|
||||
});
|
||||
|
||||
void createAuditLog({
|
||||
|
||||
Reference in New Issue
Block a user