]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-update.model.ts
Fix account link in the menu
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
CommitLineData
fd45e8f4
C
1import { VideoPrivacy } from './video-privacy.enum'
2
4771e000
C
3export interface VideoUpdate {
4 name?: string
5 category?: number
6 licence?: number
9d3ef9fe 7 language?: string
4771e000 8 description?: string
2422c46b 9 support?: string
fd45e8f4 10 privacy?: VideoPrivacy
4771e000 11 tags?: string[]
47564bbe 12 commentsEnabled?: boolean
4771e000 13 nsfw?: boolean
6de36768
C
14 thumbnailfile?: Blob
15 previewfile?: Blob
4771e000 16}