Update host

This commit is contained in:
Raymond Feng 2015-07-30 11:34:11 -07:00
parent 74ac13dfe3
commit a73935ddff
1 changed files with 4 additions and 1 deletions

View File

@ -209,8 +209,11 @@ function addRoute(app, uri, doc, opts, version) {
doc.basePath = prefix + host + initialPath;
}
if (version === '2.0') {
doc.host = req.hostname;
doc.host = req.get('host');
doc.info.title = 'REST APIs for ' + pkg.name;
doc.definitions.any = doc.definitions.object = {
properties: {}
};
}
res.status(200).send(doc);
});