aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-10-19 16:43:48 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-10-19 16:43:48 +0200
commita10d56bafc31602dfee9b1c52bbf26ab9aca366a (patch)
treef686aa664c7ef36b0c762b26cc331926d0389f27 /client
parentf1013131ceeee1a56f3d0c0855950c05fa0e562b (diff)
downloadPeerTube-a10d56bafc31602dfee9b1c52bbf26ab9aca366a.tar.gz
PeerTube-a10d56bafc31602dfee9b1c52bbf26ab9aca366a.tar.zst
PeerTube-a10d56bafc31602dfee9b1c52bbf26ab9aca366a.zip
Add ability to forbid user to upload video
Diffstat (limited to 'client')
-rw-r--r--client/src/app/+admin/users/user-edit/user-edit.ts1
1 files changed, 1 insertions, 0 deletions
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'
3export abstract class UserEdit extends FormReactive { 3export abstract class UserEdit extends FormReactive {
4 videoQuotaOptions = [ 4 videoQuotaOptions = [
5 { value: -1, label: 'Unlimited' }, 5 { value: -1, label: 'Unlimited' },
6 { value: 0, label: '0'},
6 { value: 100 * 1024 * 1024, label: '100MB' }, 7 { value: 100 * 1024 * 1024, label: '100MB' },
7 { value: 5 * 1024 * 1024, label: '500MB' }, 8 { value: 5 * 1024 * 1024, label: '500MB' },
8 { value: 1024 * 1024 * 1024, label: '1GB' }, 9 { value: 1024 * 1024 * 1024, label: '1GB' },