aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/instance/instance-features-table.component.ts
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2018-09-02 21:35:52 +0200
committerChocobozzz <me@florianbigard.com>2018-09-03 08:49:29 +0200
commit61318dd63fc652383cbe043851ade195f061b5f2 (patch)
treed07918442445f9a471c34df10ccdd19fe07a2a2d /client/src/app/shared/instance/instance-features-table.component.ts
parent20d211990425af8d9bb5c8eba204d2b485bcd19a (diff)
downloadPeerTube-61318dd63fc652383cbe043851ade195f061b5f2.tar.gz
PeerTube-61318dd63fc652383cbe043851ade195f061b5f2.tar.zst
PeerTube-61318dd63fc652383cbe043851ade195f061b5f2.zip
add daily quota to the features table information
Diffstat (limited to 'client/src/app/shared/instance/instance-features-table.component.ts')
-rw-r--r--client/src/app/shared/instance/instance-features-table.component.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/app/shared/instance/instance-features-table.component.ts b/client/src/app/shared/instance/instance-features-table.component.ts
index 1aad5aa81..da8da0702 100644
--- a/client/src/app/shared/instance/instance-features-table.component.ts
+++ b/client/src/app/shared/instance/instance-features-table.component.ts
@@ -21,6 +21,10 @@ export class InstanceFeaturesTableComponent implements OnInit {
21 return this.serverService.getConfig().user.videoQuota 21 return this.serverService.getConfig().user.videoQuota
22 } 22 }
23 23
24 get dailyUserVideoQuota () {
25 return this.serverService.getConfig().user.videoQuotaDaily
26 }
27
24 ngOnInit () { 28 ngOnInit () {
25 this.serverService.configLoaded 29 this.serverService.configLoaded
26 .subscribe(() => { 30 .subscribe(() => {