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