From 49101183663ffca913880f507a3071bdb4e86339 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Fri, 23 Oct 2015 14:12:09 -0700 Subject: [PATCH] update flash message --- server/boot/story.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/boot/story.js b/server/boot/story.js index 6e1ca30202..c1f188db81 100755 --- a/server/boot/story.js +++ b/server/boot/story.js @@ -117,7 +117,8 @@ module.exports = function(app) { function submitNew(req, res) { if (!req.user.isGithubCool) { req.flash('errors', { - msg: 'You must authenticate with Github to post to Camper News' + msg: 'You must link GitHub with your account before you can post' + + ' on Camper News.' }); return res.redirect('/news'); }