aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/instance/instance-features-table.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-02-21 15:00:26 +0100
committerChocobozzz <me@florianbigard.com>2019-02-21 15:00:26 +0100
commitc0e04e46417c7819f024e45896240d4b7331be86 (patch)
tree2941f566ea65a201314596dbaf2d737b84d76b0e /client/src/app/shared/instance/instance-features-table.component.ts
parent9b39106d5757caf221a88e42e05167a6fac479c6 (diff)
downloadPeerTube-c0e04e46417c7819f024e45896240d4b7331be86.tar.gz
PeerTube-c0e04e46417c7819f024e45896240d4b7331be86.tar.zst
PeerTube-c0e04e46417c7819f024e45896240d4b7331be86.zip
Move user registration info in features table
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.ts5
1 files changed, 4 insertions, 1 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 da8da0702..aaf0a6960 100644
--- a/client/src/app/shared/instance/instance-features-table.component.ts
+++ b/client/src/app/shared/instance/instance-features-table.component.ts
@@ -38,6 +38,10 @@ export class InstanceFeaturesTableComponent implements OnInit {
38 38
39 this.features = [ 39 this.features = [
40 { 40 {
41 label: this.i18n('User registration allowed'),
42 value: config.signup.allowed
43 },
44 {
41 label: this.i18n('Transcode your videos in multiple resolutions'), 45 label: this.i18n('Transcode your videos in multiple resolutions'),
42 value: config.transcoding.enabledResolutions.length !== 0 46 value: config.transcoding.enabledResolutions.length !== 0
43 }, 47 },
@@ -50,7 +54,6 @@ export class InstanceFeaturesTableComponent implements OnInit {
50 value: config.import.videos.torrent.enabled 54 value: config.import.videos.torrent.enabled
51 } 55 }
52 ] 56 ]
53
54 } 57 }
55 58
56 private getApproximateTime (seconds: number) { 59 private getApproximateTime (seconds: number) {