This commit is contained in:
waveringana 2022-12-06 13:34:43 +00:00
parent bbc655b3f9
commit d130b12418
4 changed files with 14 additions and 20 deletions

View file

@ -34,12 +34,10 @@ passport.use(new LocalStrategy(function verify(username, password, cb) {
});
}));
passport.serializeUser(function(user, cb) {
passport.serializeUser(function(user:any, cb) {
process.nextTick(function() {
cb(null, {
// @ts-ignore
id: user.id,
// @ts-ignore
username: user.username
});
});
@ -51,7 +49,6 @@ passport.deserializeUser(function(user, cb) {
});
});
// @ts-ignore
router.get("/login", function(req, res) {
res.render("login");
});
@ -62,7 +59,6 @@ router.post("/login/password", passport.authenticate("local", {
}));
router.post("/logout", function(req, res, next) {
// @ts-ignore, logout is already initalized in app.js
req.logout(function(err) {
if (err) {
return next(err);