aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r--client/src/app/+admin/users/user-list/user-list.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+admin/users/user-list/user-list.component.ts b/client/src/app/+admin/users/user-list/user-list.component.ts
index a596251f6..7c5e8eaa4 100644
--- a/client/src/app/+admin/users/user-list/user-list.component.ts
+++ b/client/src/app/+admin/users/user-list/user-list.component.ts
@@ -63,7 +63,7 @@ export class UserListComponent extends RestTable implements OnInit {
63 }, 63 },
64 { 64 {
65 label: this.i18n('Ban'), 65 label: this.i18n('Ban'),
66 description: this.i18n('Videos will be kept as private, comments will be kept as is.'), 66 description: this.i18n('User won\'t be able to login anymore, but videos and comments will be kept as is.'),
67 handler: users => this.openBanUserModal(users), 67 handler: users => this.openBanUserModal(users),
68 isDisplayed: users => users.every(u => this.authUser.canManage(u) && u.blocked === false) 68 isDisplayed: users => users.every(u => this.authUser.canManage(u) && u.blocked === false)
69 }, 69 },