]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/videos/video-update.model.ts
Introduce user command
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
... / ...
CommitLineData
1import { VideoPrivacy } from './video-privacy.enum'
2import { VideoScheduleUpdate } from './video-schedule-update.model'
3export interface VideoUpdate {
4 name?: string
5 category?: number
6 licence?: number
7 language?: string
8 description?: string
9 support?: string
10 privacy?: VideoPrivacy
11 tags?: string[]
12 commentsEnabled?: boolean
13 downloadEnabled?: boolean
14 nsfw?: boolean
15 waitTranscoding?: boolean
16 channelId?: number
17 thumbnailfile?: Blob
18 previewfile?: Blob
19 scheduleUpdate?: VideoScheduleUpdate
20 originallyPublishedAt?: Date | string
21
22 pluginData?: any
23}