download data import csv report

This commit is contained in:
2025-08-15 17:17:28 -06:00
parent fd545ffd09
commit 0cb6634430
6 changed files with 247 additions and 6 deletions

View File

@@ -24,4 +24,7 @@ router.post('/process-csv', upload.single('csvFile'), dataConvertController.proc
// Save geocoded data
router.post('/save-geocoded', dataConvertController.saveGeocodedData);
// Download processing report
router.get('/download-report/:sessionId', dataConvertController.downloadReport);
module.exports = router;