]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-create.model.ts
Add ability to schedule video publication
[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 {
baeefe22
C
5 category?: number
6 licence?: number
9d3ef9fe 7 language?: string
baeefe22 8 description?: string
2422c46b 9 support?: string
72c7248b 10 channelId: number
2186386c
C
11 nsfw?: boolean
12 waitTranscoding?: boolean
4771e000 13 name: string
baeefe22 14 tags?: string[]
47564bbe 15 commentsEnabled?: boolean
fd45e8f4 16 privacy: VideoPrivacy
bbe0f064 17 scheduleUpdate?: VideoScheduleUpdate
4771e000 18}