Тема: Не розумію,для чого вписується(req,res,next)після passport.authenticat
router.post("/login",(req,res,next)=>{
passport.authenticate('local',{
successRedirect:'/ideas',
failureRedirect:'/users/login',
failureFlash:true
})(req,res,next);
Дякую)