From 07f66b61f4cc8ca3b8c6b8bbda05f9d6c5998b22 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Tue, 25 Aug 2015 15:51:47 -0700 Subject: [PATCH] update the completed all challenges message --- server/boot/challenge.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/server/boot/challenge.js b/server/boot/challenge.js index f69b1101ba..a13940f794 100644 --- a/server/boot/challenge.js +++ b/server/boot/challenge.js @@ -208,10 +208,12 @@ module.exports = function(app) { debug('next challengeName', nextChallengeName); if (!nextChallengeName || nextChallengeName === firstChallenge) { req.flash('errors', { - msg: 'It looks like you have finished all of our challenges.' + - ' Great job! Now on to helping nonprofits!' + msg: 'Once you have completed all of our challenges, you should '+ + 'join our Half Way Club and start getting '+ + 'ready for our nonprofit projects.' }); - return res.redirect('/challenges/' + firstChallenge); + return res.redirect('/map'); } res.redirect('/challenges/' + nextChallengeName); }