]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-update.model.ts
Add ability to filter out public videos from admin
[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'
d23dd9fb 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
7f2cfe3a 14 downloadEnabled?: boolean
4771e000 15 nsfw?: boolean
2186386c 16 waitTranscoding?: boolean
0f320037 17 channelId?: number
6de36768
C
18 thumbnailfile?: Blob
19 previewfile?: Blob
bbe0f064 20 scheduleUpdate?: VideoScheduleUpdate
c8034165 21 originallyPublishedAt?: Date | string
7294aab0
C
22
23 pluginData?: any
4771e000 24}