diff options
Diffstat (limited to 'shared/models/videos/video-create.model.ts')
-rw-r--r-- | shared/models/videos/video-create.model.ts | 25 |
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 @@ | |||
1 | import { VideoPrivacy } from './video-privacy.enum' | ||
2 | import { VideoScheduleUpdate } from './video-schedule-update.model' | ||
3 | |||
4 | export 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 | } | ||