2013-12-20 13:48:33 -05:00
|
|
|
/**
|
|
|
|
* GET /
|
2014-01-07 18:15:14 -05:00
|
|
|
* Home page.
|
2013-12-20 13:48:33 -05:00
|
|
|
*/
|
2014-01-13 04:34:54 -05:00
|
|
|
|
2015-05-01 21:32:24 -07: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); }
|
|
|
|
});
|
|
|
|
}
|
2015-05-01 10:18:24 -07:00
|
|
|
res.render('home', {
|
|
|
|
title: 'Learn to Code JavaScript and get a Coding Job by Helping Nonprofits'
|
|
|
|
});
|
2014-12-23 08:48:28 -08:00
|
|
|
};
|