From a10d56bafc31602dfee9b1c52bbf26ab9aca366a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 19 Oct 2017 16:43:48 +0200 Subject: Add ability to forbid user to upload video --- client/src/app/+admin/users/user-edit/user-edit.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'client/src') diff --git a/client/src/app/+admin/users/user-edit/user-edit.ts b/client/src/app/+admin/users/user-edit/user-edit.ts index 61db8a906..657c0f1c0 100644 --- a/client/src/app/+admin/users/user-edit/user-edit.ts +++ b/client/src/app/+admin/users/user-edit/user-edit.ts @@ -3,6 +3,7 @@ import { FormReactive } from '../../../shared' export abstract class UserEdit extends FormReactive { videoQuotaOptions = [ { value: -1, label: 'Unlimited' }, + { value: 0, label: '0'}, { value: 100 * 1024 * 1024, label: '100MB' }, { value: 5 * 1024 * 1024, label: '500MB' }, { value: 1024 * 1024 * 1024, label: '1GB' }, -- cgit v1.2.3