]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-create.model.ts
Add ability to schedule video publication
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-create.model.ts
1 import { VideoPrivacy } from './video-privacy.enum'
2 import { VideoScheduleUpdate } from './video-schedule-update.model'
3
4 export interface VideoCreate {
5 category?: number
6 licence?: number
7 language?: string
8 description?: string
9 support?: string
10 channelId: number
11 nsfw?: boolean
12 waitTranscoding?: boolean
13 name: string
14 tags?: string[]
15 commentsEnabled?: boolean
16 privacy: VideoPrivacy
17 scheduleUpdate?: VideoScheduleUpdate
18 }