Change home page content #50

Merged
bilal.catic merged 3 commits from change-home-page-content into master 2019-08-30 10:23:06 +02:00
Showing only changes of commit db4cb95e77 - Show all commits

View File

@@ -151,6 +151,7 @@ const addFees = (req, res) => {
}) })
}) })
.catch((error) => { .catch((error) => {
console.log(error);
res.status(500).send(error); res.status(500).send(error);
}); });
}) })
@@ -159,6 +160,7 @@ const addFees = (req, res) => {
res.status(500).send(error); res.status(500).send(error);
}) })
}else{ }else{
console.log('Date range is missing to send fees to ORD');
res.status(400).send('Date range is missing'); res.status(400).send('Date range is missing');
} }
}; };