* Code cleanup and eslint since -- remove unused variables, clean up RegExs, so on...

This commit is contained in:
Bryan Ashby 2018-01-15 12:22:11 -07:00
parent a106050ba3
commit ac1433e84b
112 changed files with 1375 additions and 1898 deletions

View file

@ -12,7 +12,7 @@ const _ = require('lodash');
/*
Available listFormat/focusListFormat object members:
userId : User ID
userName : User name/handle
lastLoginTs : Last login timestamp
@ -99,7 +99,7 @@ exports.getModule = class UserListModule extends MenuModule {
userListView.redraw();
callback(null);
}
],
],
function complete(err) {
if(err) {
self.client.log.error( { error : err.toString() }, 'Error loading user list');
@ -108,5 +108,5 @@ exports.getModule = class UserListModule extends MenuModule {
}
);
});
}
}
};