passport middleware check if authenticated

JavaScript
//just for me lol
app.post("/login", passport.authenticate("local", {
	successRedirect: "/secret", 
	failureRedirect: "/login"
	}), function(req,res){
	//don't need to add anything
}); 
Source

Also in JavaScript: