feat(db): include xp_audit_log in automatic retention/prune (#6801) (#7260)

* feat(db): include xp_audit_log in automatic retention/prune (#6801)

* fix(i18n): mirror retentionXpAuditLog into pt-BR.json (#6801)

pt.json and pt-BR.json are distinct files; the key landed only in pt.json,
so the i18n pt-BR integrity test (no drift, #6695) went red.
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-07-17 10:41:17 -03:00
committed by GitHub
parent 8b9c7734b8
commit 29bb59e18d
10 changed files with 162 additions and 0 deletions

View File

@@ -379,6 +379,7 @@ export const databaseSettingsSchema = z
callLogs: z.number().int().min(1).max(3650),
usageHistory: z.number().int().min(1).max(3650),
memoryEntries: z.number().int().min(1).max(3650),
xpAuditLog: z.number().int().min(1).max(365),
autoCleanupEnabled: z.boolean(),
}),