Add ban action.

This commit is contained in:
gaba
2016-11-18 13:22:54 -08:00
parent 0f5c0d7ce2
commit 7c960e7118
4 changed files with 30 additions and 6 deletions
+2
View File
@@ -214,6 +214,7 @@ function listUsers() {
'Display Name',
'Profiles',
'Roles',
'Status',
'State'
]
});
@@ -224,6 +225,7 @@ function listUsers() {
user.displayName,
user.profiles.map((p) => p.provider).join(', '),
user.roles.join(', '),
user.status,
user.disabled ? 'Disabled' : 'Enabled'
]);
});