Some checks failed
Deploy to Staging / Build Images (pull_request) Successful in 4m42s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 37s
Deploy to Staging / Verify Staging (pull_request) Failing after 6s
Deploy to Staging / Notify Staging Ready (pull_request) Has been skipped
Deploy to Staging / Notify Staging Failure (pull_request) Successful in 6s
- Add audit_logs table with categories, severities, and indexes - Create AuditLogService and AuditLogRepository - Add REST API endpoints for viewing and exporting logs - Wire audit logging into auth, vehicles, admin, and backup features - Add desktop AdminLogsPage with filters and CSV export - Add mobile AdminLogsMobileScreen with card layout - Implement 90-day retention cleanup job - Remove old AuditLogPanel from AdminCatalogPage Security fixes: - Escape LIKE special characters to prevent pattern injection - Limit CSV export to 5000 records to prevent memory exhaustion - Add truncation warning headers for large exports 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
664 B
TypeScript
29 lines
664 B
TypeScript
/**
|
|
* @ai-summary Audit log feature exports
|
|
* @ai-context Re-exports types, service, and repository for external use
|
|
*/
|
|
|
|
// Types
|
|
export {
|
|
AuditLogCategory,
|
|
AuditLogSeverity,
|
|
AuditLogEntry,
|
|
CreateAuditLogInput,
|
|
AuditLogFilters,
|
|
AuditLogPagination,
|
|
AuditLogSearchResult,
|
|
AUDIT_LOG_CATEGORIES,
|
|
AUDIT_LOG_SEVERITIES,
|
|
isValidCategory,
|
|
isValidSeverity,
|
|
} from './domain/audit-log.types';
|
|
|
|
// Service
|
|
export { AuditLogService } from './domain/audit-log.service';
|
|
|
|
// Repository
|
|
export { AuditLogRepository } from './data/audit-log.repository';
|
|
|
|
// Singleton instance for cross-feature use
|
|
export { auditLogService } from './audit-log.instance';
|