2015-06-03 16:19:23 -07:00
|
|
|
module.exports = function(app) {
|
2015-06-03 16:31:42 -07:00
|
|
|
var router = app.loopback.Router();
|
2015-06-03 16:19:23 -07:00
|
|
|
|
|
|
|
router.get('/nonprofit-project-instructions', function(req, res) {
|
|
|
|
res.redirect(
|
|
|
|
301,
|
2015-07-31 21:55:49 -07:00
|
|
|
"https://github.com/FreeCodeCamp/freecodecamp/wiki/How-Free-Code-Camp's-Nonprofit-Projects-work"
|
2015-07-02 13:59:13 -07:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2015-06-03 16:19:23 -07:00
|
|
|
router.get('/agile', function(req, res) {
|
|
|
|
res.redirect(301, '/pmi-acp-agile-project-managers');
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/privacy', function(req, res) {
|
|
|
|
res.redirect(
|
2015-07-31 21:55:49 -07:00
|
|
|
301, "https://github.com/FreeCodeCamp/freecodecamp/wiki/Free-Code-Camp's-Privacy-Policy"
|
2015-06-03 16:19:23 -07:00
|
|
|
);
|
|
|
|
});
|
2015-06-03 16:31:42 -07:00
|
|
|
|
2015-06-19 14:49:10 -07:00
|
|
|
router.get('/learn-to-code', function(req, res) {
|
|
|
|
res.redirect(301, '/map');
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/about', function(req, res) {
|
|
|
|
res.redirect(301, '/map');
|
|
|
|
});
|
|
|
|
|
2015-06-03 16:31:42 -07:00
|
|
|
app.use(router);
|
2015-06-03 16:19:23 -07:00
|
|
|
};
|