i18n-labelText labelText="Enable video comments"
></my-peertube-checkbox>
+ <my-peertube-checkbox
+ inputName="downloadingEnabled" formControlName="downloadingEnabled"
+ i18n-labelText labelText="Disable downloading"
+ ></my-peertube-checkbox>
+
<my-peertube-checkbox
inputName="waitTranscoding" formControlName="waitTranscoding"
i18n-labelText labelText="Wait transcoding before publishing the video"
const defaultValues = {
nsfw: 'false',
commentsEnabled: 'true',
+ downloadingEnabled: 'true',
waitTranscoding: 'true',
tags: []
}
channelId: this.videoValidatorsService.VIDEO_CHANNEL,
nsfw: null,
commentsEnabled: null,
+ downloadingEnabled: null,
waitTranscoding: null,
category: this.videoValidatorsService.VIDEO_CATEGORY,
licence: this.videoValidatorsService.VIDEO_LICENCE,