1
0
Fork 0

Import in private, and then set the chosen privacy

This commit is contained in:
Chocobozzz 2021-01-19 11:49:50 +01:00
parent 1ef7f32304
commit d487a997c8
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 7 additions and 3 deletions

View File

@ -55,8 +55,10 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, CanCompon
}
goLive () {
const name = 'Live'
const video: LiveVideoCreate = {
name: 'Live',
name,
privacy: VideoPrivacy.PRIVATE,
nsfw: this.serverConfig.instance.isNSFW,
waitTranscoding: true,

View File

@ -76,7 +76,7 @@ export class VideoImportTorrentComponent extends VideoSend implements OnInit, Ca
this.isImportingVideo = true
const videoUpdate: VideoUpdate = {
privacy: this.firstStepPrivacyId,
privacy: VideoPrivacy.PRIVATE,
waitTranscoding: false,
commentsEnabled: true,
downloadEnabled: true,
@ -95,6 +95,7 @@ export class VideoImportTorrentComponent extends VideoSend implements OnInit, Ca
this.video = new VideoEdit(Object.assign(res.video, {
commentsEnabled: videoUpdate.commentsEnabled,
downloadEnabled: videoUpdate.downloadEnabled,
privacy: { id: this.firstStepPrivacyId },
support: null,
thumbnailUrl: null,
previewUrl: null

View File

@ -63,7 +63,7 @@ export class VideoImportUrlComponent extends VideoSend implements OnInit, CanCom
this.isImportingVideo = true
const videoUpdate: VideoUpdate = {
privacy: this.firstStepPrivacyId,
privacy: VideoPrivacy.PRIVATE,
waitTranscoding: false,
commentsEnabled: true,
downloadEnabled: true,
@ -103,6 +103,7 @@ export class VideoImportUrlComponent extends VideoSend implements OnInit, CanCom
this.video = new VideoEdit(Object.assign(video, {
commentsEnabled: videoUpdate.commentsEnabled,
downloadEnabled: videoUpdate.downloadEnabled,
privacy: { id: this.firstStepPrivacyId },
support: null,
thumbnailUrl,
previewUrl