Irma-Response / irma-response-bot-api

API for irma response bot
11 stars 10 forks source link

Add SMS response for missing zip code or zip not in list #12

Closed tabinfl closed 7 years ago

tabinfl commented 7 years ago

Need friendly SMS responses to these situations (in index.js):

if (zip === undefined || zipCodes === undefined) { res.status(500).send('No zip given, or zip code geolocation data unavilable!'); } else if (!(zip in zipCodes)) { res.status(404).send('Could not find ZIP code'); } else { const [lat, lon] = zipCodes[zip];