aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-04-05 15:45:50 +0200
committerChocobozzz <me@florianbigard.com>2019-04-05 15:45:50 +0200
commit32157c0892ed000d15ad8fbc89e90fd005a5f4e8 (patch)
tree7545ee16dad15f87d76e36a6a8b469d6b1c12f2e /client/src/app
parent3143ae17a014576ec21b535ba9e8266ca727a152 (diff)
downloadPeerTube-32157c0892ed000d15ad8fbc89e90fd005a5f4e8.tar.gz
PeerTube-32157c0892ed000d15ad8fbc89e90fd005a5f4e8.tar.zst
PeerTube-32157c0892ed000d15ad8fbc89e90fd005a5f4e8.zip
Add auto blacklist info in feature table
Diffstat (limited to 'client/src/app')
-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 a4924a0d5..c0257fd59 100644
--- a/client/src/app/shared/instance/instance-features-table.component.ts
+++ b/client/src/app/shared/instance/instance-features-table.component.ts
@@ -51,6 +51,10 @@ export class InstanceFeaturesTableComponent implements OnInit {
51 value: config.signup.allowed 51 value: config.signup.allowed
52 }, 52 },
53 { 53 {
54 label: this.i18n('Video uploads require manual validation by moderators'),
55 value: config.autoBlacklist.videos.ofUsers.enabled
56 },
57 {
54 label: this.i18n('Transcode your videos in multiple resolutions'), 58 label: this.i18n('Transcode your videos in multiple resolutions'),
55 value: config.transcoding.enabledResolutions.length !== 0 59 value: config.transcoding.enabledResolutions.length !== 0
56 }, 60 },