Files
freeCodeCamp/controllers/home.js

17 lines
419 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, next) {
if (req.user && !req.user.profile.picture) {
req.user.profile.picture = 'https://s3.amazonaws.com/freecodecamp/camper-image-placeholder.png';
req.user.save(function(err) {
if (err) { return next(err); }
});
}
res.render('home', {
title: 'Learn to Code JavaScript and get a Coding Job by Helping Nonprofits'
});
};