Initialize passport when only adminAuth.tokens is set

Fixes #3341
This commit is contained in:
Nick O'Leary
2022-01-12 13:26:18 +00:00
parent f8c47f59bc
commit 7732d52583
2 changed files with 4 additions and 1 deletions

View File

@@ -146,7 +146,7 @@ function authenticateUserToken(req) {
} else {
reject();
}
});
}).catch(reject);
} else {
reject();
}
@@ -163,6 +163,7 @@ TokensStrategy.prototype.authenticate = function(req) {
authenticateUserToken(req).then(user => {
this.success(user,{scope:user.permissions});
}).catch(err => {
log.trace("token authentication failure: "+err.stack)
this.fail(401);
});
}