Updated all module status columns in product modules doc to reflect actual code state. Removed duplicate @Bean import in SecurityConfig.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Added sn-stats and callback-stats endpoints. HomeView now shows stat cards, pending todos, recent activity, and ECharts pie charts for SN status distribution and callback status. Installed echarts dependency.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
V25 migration creates platform_system_param table. SystemParamController replaces localStorage MVP with backend persistence. LicenseSnService.create now checks deliveryGateEnabled flag and blocks SN creation when gate is on but no deliveries completed.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Replaced hardcoded admin/sales/delivery/ops users with PlatformUser table lookups. Fixed changePassword to use JWT SecurityContext for current user lookup. Implemented real resetPassword and forceLogout endpoints (previously no-ops). Added BCrypt password verification.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Fixed getCustomerSummary() to actually query contract count instead of returning hardcoded 0. Injected PlatformContractMapper for the query.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Added failureReason field to CallbackInboxStatusPatchRequest so Ops can categorize failure causes. Added POST /batch-replay for mass reprocess and GET /stats/backlog for backlog monitoring.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Replaced try-catch blocks returning e.getMessage() in HTTP 500 responses with proper ResponseStatusException propagation through global ApiExceptionHandler. Added file size (50MB) and MIME type whitelist validation to contract attachment upload.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
All @RequestParam annotations without explicit value= attributes cause parameter name resolution failures when Java -parameters compiler flag is not set. Fixed AuditController, IntegrationCatalogController, CustomerController, ReportController, UserAdminController, SecurityConfig.
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>