mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
335 B
13 lines
335 B
7 years ago
|
// set up routes that are outside any particular API version
|
||
|
function addRoutes(app) {
|
||
|
function redirectToV1(req, res, next) {
|
||
|
res.redirect(301, '/v1');
|
||
|
}
|
||
|
|
||
|
// default root URL traffic to V1 root
|
||
|
// which has a link to the readme and other helpful info
|
||
|
app.get('/', redirectToV1);
|
||
|
}
|
||
|
|
||
|
module.exports.addRoutes = addRoutes;
|