]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-update.model.ts
Begin unit tests
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
1 import { VideoPrivacy } from './video-privacy.enum'
2
3 export interface VideoUpdate {
4 name?: string
5 category?: number
6 licence?: number
7 language?: number
8 description?: string
9 privacy?: VideoPrivacy
10 tags?: string[]
11 nsfw?: boolean
12 }