Enable logging for LDAP users

This commit is contained in:
Keegan 2018-02-23 20:07:08 -05:00
parent a24ab74c4c
commit 4fe7dc0808
2 changed files with 2 additions and 2 deletions

View file

@ -112,7 +112,7 @@ ClientManager.prototype.addUser = function(name, password, enableLog) {
const user = {
password: password || "",
log: enableLog || false,
log: enableLog,
awayMessage: "",
networks: [],
sessions: {},

View file

@ -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);