diff options
author | Chocobozzz <me@florianbigard.com> | 2018-03-27 15:46:36 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-03-27 15:46:36 +0200 |
commit | be1fc4bc50811df522cbfef299da6a7540589f65 (patch) | |
tree | 3e49a94b641e623bd23e71e8621c9c949bec2eca /client/src/app/about/about.component.ts | |
parent | fc62e39c0b5d20b19916b2880a0f9a110fcc02e5 (diff) | |
download | PeerTube-be1fc4bc50811df522cbfef299da6a7540589f65.tar.gz PeerTube-be1fc4bc50811df522cbfef299da6a7540589f65.tar.zst PeerTube-be1fc4bc50811df522cbfef299da6a7540589f65.zip |
Fix custom server configuration numbers
Diffstat (limited to 'client/src/app/about/about.component.ts')
-rw-r--r-- | client/src/app/about/about.component.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/app/about/about.component.ts b/client/src/app/about/about.component.ts index 7edc013e1..2fd48f0d3 100644 --- a/client/src/app/about/about.component.ts +++ b/client/src/app/about/about.component.ts | |||
@@ -27,6 +27,10 @@ export class AboutComponent implements OnInit { | |||
27 | return this.serverService.getConfig().user.videoQuota | 27 | return this.serverService.getConfig().user.videoQuota |
28 | } | 28 | } |
29 | 29 | ||
30 | get isSignupAllowed () { | ||
31 | return this.serverService.getConfig().signup.allowed | ||
32 | } | ||
33 | |||
30 | ngOnInit () { | 34 | ngOnInit () { |
31 | this.serverService.getAbout() | 35 | this.serverService.getAbout() |
32 | .subscribe( | 36 | .subscribe( |