Created
February 14, 2019 16:24
-
-
Save jomaora/1267482ca639f30bf8025b04a36f8364 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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