Enable logging for LDAP users
This commit is contained in:
parent
a24ab74c4c
commit
4fe7dc0808
@ -112,7 +112,7 @@ ClientManager.prototype.addUser = function(name, password, enableLog) {
|
||||
|
||||
const user = {
|
||||
password: password || "",
|
||||
log: enableLog || false,
|
||||
log: enableLog,
|
||||
awayMessage: "",
|
||||
networks: [],
|
||||
sessions: {},
|
||||
|
@ -114,7 +114,7 @@ function ldapAuth(manager, client, user, password, callback) {
|
||||
// auth plugin API
|
||||
function callbackWrapper(valid) {
|
||||
if (valid && !client) {
|
||||
manager.addUser(user, null);
|
||||
manager.addUser(user, null, true);
|
||||
}
|
||||
|
||||
callback(valid);
|
||||
|
Loading…
Reference in New Issue
Block a user