Allow incident price modification frontend+backend #81

Merged
bilal.catic merged 8 commits from allow-incident-price-modification-frontend into master 2020-01-09 18:13:07 +01:00
Showing only changes of commit 3a10e56eeb - Show all commits

View File

@@ -44,6 +44,6 @@ router.get('/integration/report/practiceSummary/:year', getPracticeSummaryReport
// temporary route, manually trigger door lock charge calculations
router.get('/calculate', (req, res) => { calculateDoorLockCharges(); res.send();});
router.get('/calculate', (req, res) => { calculateDoorLockCharges().then(() => res.send('Done')).catch((err) => res.send('Error \r\n', err));});
module.exports = router;