Skip to content

Instantly share code, notes, and snippets.

@jomaora
Created February 14, 2019 16:24
Show Gist options
  • Save jomaora/1267482ca639f30bf8025b04a36f8364 to your computer and use it in GitHub Desktop.
Save jomaora/1267482ca639f30bf8025b04a36f8364 to your computer and use it in GitHub Desktop.
'use strict';
module.exports.getWeather = (req, res, next) => {
const requestData = {
search: req.swagger.params.location.value, //instead of req.params.location
degreeType: req.swagger.params.unit.value //instead of req.query.unit
}
res.send(requestData);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment