Files
freeCodeCamp/controllers/home.js

19 lines
445 B
JavaScript
Raw Normal View History

/**
* GET /
2014-01-07 18:15:14 -05:00
* Home page.
*/
2014-01-13 04:34:54 -05:00
exports.index = function(req, res) {
if (req.user) {
if (req.user.challengesCompleted.length > 0) {
nextChallenge = Math.max.apply(Math, req.user.challengesHash) + 1;
res.redirect("challenges/" + nextChallenge);
} else {
res.redirect("challenges/0");
}
} else {
res.render('home', {
2014-11-23 15:08:46 -06:00
title: 'Learn to Code and Become a Software Engineer'
});
}
2014-10-20 12:37:48 -07:00
};