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