aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-create.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/video-create.model.ts')
-rw-r--r--shared/models/videos/video-create.model.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/shared/models/videos/video-create.model.ts b/shared/models/videos/video-create.model.ts
deleted file mode 100644
index 7a34b5afe..000000000
--- a/shared/models/videos/video-create.model.ts
+++ /dev/null
@@ -1,25 +0,0 @@
1import { VideoPrivacy } from './video-privacy.enum'
2import { VideoScheduleUpdate } from './video-schedule-update.model'
3
4export interface VideoCreate {
5 name: string
6 channelId: number
7
8 category?: number
9 licence?: number
10 language?: string
11 description?: string
12 support?: string
13 nsfw?: boolean
14 waitTranscoding?: boolean
15 tags?: string[]
16 commentsEnabled?: boolean
17 downloadEnabled?: boolean
18 privacy: VideoPrivacy
19 scheduleUpdate?: VideoScheduleUpdate
20 originallyPublishedAt?: Date | string
21 videoPasswords?: string[]
22
23 thumbnailfile?: Blob | string
24 previewfile?: Blob | string
25}