]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-create.model.ts
Add ability to filter out public videos from admin
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-create.model.ts
CommitLineData
fd45e8f4 1import { VideoPrivacy } from './video-privacy.enum'
bbe0f064 2import { VideoScheduleUpdate } from './video-schedule-update.model'
fd45e8f4 3
4771e000 4export interface VideoCreate {
97969c4e
C
5 name: string
6 channelId: number
7
baeefe22
C
8 category?: number
9 licence?: number
9d3ef9fe 10 language?: string
baeefe22 11 description?: string
2422c46b 12 support?: string
2186386c
C
13 nsfw?: boolean
14 waitTranscoding?: boolean
baeefe22 15 tags?: string[]
47564bbe 16 commentsEnabled?: boolean
7f2cfe3a 17 downloadEnabled?: boolean
fd45e8f4 18 privacy: VideoPrivacy
bbe0f064 19 scheduleUpdate?: VideoScheduleUpdate
c6c0fa6c 20 originallyPublishedAt?: Date | string
77e9f859 21
af4ae64f
C
22 thumbnailfile?: Blob | string
23 previewfile?: Blob | string
4771e000 24}