From 31b6ddf86652502e0c96d77fa10861ce4af11aa4 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 10 Apr 2019 09:23:18 +0200 Subject: Add ability to disable tracker --- client/src/app/shared/instance/instance-features-table.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'client/src/app/shared/instance/instance-features-table.component.ts') 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 c0257fd59..72e7c2730 100644 --- a/client/src/app/shared/instance/instance-features-table.component.ts +++ b/client/src/app/shared/instance/instance-features-table.component.ts @@ -1,7 +1,6 @@ import { Component, OnInit } from '@angular/core' import { ServerService } from '@app/core' import { I18n } from '@ngx-translate/i18n-polyfill' -import { ServerConfig } from '../../../../../shared' @Component({ selector: 'my-instance-features-table', @@ -65,6 +64,10 @@ export class InstanceFeaturesTableComponent implements OnInit { { label: this.i18n('Torrent import'), value: config.import.videos.torrent.enabled + }, + { + label: this.i18n('P2P enabled'), + value: config.tracker.enabled } ] } -- cgit v1.2.3