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