From 4bc0642a480a2174838638619b1b10d7a4c07d2c Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Tue, 11 Feb 2014 08:31:56 -0500 Subject: [PATCH] Removed console.log from venmo success callback --- app.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app.js b/app.js index 33348e9917..d8e6cdfd5f 100755 --- a/app.js +++ b/app.js @@ -153,7 +153,6 @@ app.get('/auth/tumblr/callback', passport.authorize('tumblr', { failureRedirect: }); app.get('/auth/venmo', passport.authorize('venmo', { scope: 'make_payments access_profile access_balance access_email access_phone' })); app.get('/auth/venmo/callback', passport.authorize('venmo', { failureRedirect: '/api' }), function(req, res) { - console.log('Success'); res.redirect('/api/venmo'); });