CRR: Removing console.log
All checks were successful
Jenkins Production Deployment

This commit is contained in:
Patrick Müller 2022-01-09 15:16:31 +01:00
parent e98d1d48ab
commit af8f77a268
Signed by: Paddy
GPG Key ID: 37ABC11275CAABCE

View File

@ -31,7 +31,6 @@ routeRatingsRouter.post('/', async (req: Request, res: Response) => {
let captcha_token = req.query['h-captcha-response'] as string;
if (!route_id || isNaN(stars) || !captcha_token) {
console.log(route_id, stars, captcha_token);
res.status(400).send({'message': 'Missing parameters'});
return;
}