Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     var passportShit = function(){
  2.             var inspectMe = passport.authenticate('local-signup', {
  3.                 successRedirect : '/profile', // redirect to the secure profile section
  4.                 failureRedirect : '/signup', // redirect back to the signup page if there is an error
  5.                 failureFlash : true // allow flash messages
  6.             });
  7.             console.dir(inspectMe);
  8.             return inspectMe;
  9.     };
  10.     app.post('/signup', passportShit);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement