update csp

This commit is contained in:
Quincy Larson
2015-08-16 08:03:34 -07:00
parent d14514f661
commit b05d9338f4
3 changed files with 7 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ module.exports = function(app) {
'Feel free to email us at this address if you have ',
'any questions about Free Code Camp.\n',
'And if you have a moment, check out our blog: ',
'blog.freecodecamp.com.\n',
'blog.freecodecamp.com.\n\n',
'Good luck with the challenges!\n\n',
'- the Free Code Camp Volunteer Team'
].join('')
@@ -85,7 +85,7 @@ module.exports = function(app) {
if (err) { return next(err); }
ctx.req.flash('success', {
msg: [ 'thanks for joining freecodecamp!' ]
msg: [ "Welcome to Free Code Camp! We've created your account." ]
});
ctx.res.redirect('/');
});