]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-update.model.ts
Add ability to schedule video publication
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
CommitLineData
fd45e8f4 1import { VideoPrivacy } from './video-privacy.enum'
bbe0f064 2import { VideoScheduleUpdate } from './video-schedule-update.model'
fd45e8f4 3
4771e000
C
4export interface VideoUpdate {
5 name?: string
6 category?: number
7 licence?: number
9d3ef9fe 8 language?: string
4771e000 9 description?: string
2422c46b 10 support?: string
fd45e8f4 11 privacy?: VideoPrivacy
4771e000 12 tags?: string[]
47564bbe 13 commentsEnabled?: boolean
4771e000 14 nsfw?: boolean
2186386c 15 waitTranscoding?: boolean
0f320037 16 channelId?: number
6de36768
C
17 thumbnailfile?: Blob
18 previewfile?: Blob
bbe0f064 19 scheduleUpdate?: VideoScheduleUpdate
4771e000 20}