mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-25 20:51:23 +03:00
Logout will not redirect to /login (#4420)
This commit is contained in:
parent
93efc2e6a0
commit
8d1eab20e5
@ -768,7 +768,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
|
|||||||
}
|
}
|
||||||
|
|
||||||
// This is the default logout redirect to the login page
|
// This is the default logout redirect to the login page
|
||||||
if (req.query.key != null) { res.redirect(domain.url + '?key=' + req.query.key); } else { res.redirect(domain.url); }
|
if (req.query.key != null) { res.redirect(domain.url + 'login?key=' + req.query.key); } else { res.redirect(domain.url + 'login'); }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return an object with 2FA type if 2-step auth can be skipped
|
// Return an object with 2FA type if 2-step auth can be skipped
|
||||||
|
Loading…
Reference in New Issue
Block a user