mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-29 01:56:12 +01:00
fix: #9032, fix login redirect for sso plugins
This commit is contained in:
@@ -125,12 +125,7 @@ Controllers.login = async function (req, res) {
|
||||
data.allowLocalLogin = hasLoginPrivilege || parseInt(req.query.local, 10) === 1;
|
||||
|
||||
if (!data.allowLocalLogin && !data.allowRegistration && data.alternate_logins && data.authentication.length === 1) {
|
||||
if (res.locals.isAPI) {
|
||||
return helpers.redirect(res, {
|
||||
external: nconf.get('relative_path') + data.authentication[0].url,
|
||||
});
|
||||
}
|
||||
return res.redirect(nconf.get('relative_path') + data.authentication[0].url);
|
||||
return helpers.redirect(res, data.authentication[0].url);
|
||||
}
|
||||
|
||||
if (req.loggedIn) {
|
||||
|
||||
Reference in New Issue
Block a user