X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Badmin%2Fconfig%2Fedit-custom-config%2Fedit-custom-config.component.ts;h=2c3b7560d616606c9b72c6252d17409c1a49148b;hb=54909304287f3c04dcfb39660be8ead57dc95440;hp=2afe80a037011d226fc24a98707daa6bb32d6ea4;hpb=4e4c23c5b8d55ab0aa48a7be8c53ec71d1d7e796;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts index 2afe80a03..2c3b7560d 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts @@ -165,6 +165,11 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { enabled: null }, user: { + history: { + videos: { + enabled: null + } + }, videoQuota: USER_VIDEO_QUOTA_VALIDATOR, videoQuotaDaily: USER_VIDEO_QUOTA_DAILY_VALIDATOR }, @@ -185,6 +190,9 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { }, webtorrent: { enabled: null + }, + remoteRunners: { + enabled: null } }, live: { @@ -203,11 +211,17 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { threads: TRANSCODING_THREADS_VALIDATOR, profile: null, resolutions: {}, - alwaysTranscodeOriginalResolution: null + alwaysTranscodeOriginalResolution: null, + remoteRunners: { + enabled: null + } } }, videoStudio: { - enabled: null + enabled: null, + remoteRunners: { + enabled: null + } }, autoBlacklist: { videos: { @@ -259,11 +273,11 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { const defaultValues = { transcoding: { - resolutions: {} + resolutions: {} as { [id: string]: string } }, live: { transcoding: { - resolutions: {} + resolutions: {} as { [id: string]: string } } } }