aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-update.model.ts
blob: 0b26484d7aa8da870f77a703a3d2ab8ac6923bc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { VideoPrivacy } from './video-privacy.enum'

export interface VideoUpdate {
  name?: string
  category?: number
  licence?: number
  language?: number
  description?: string
  support?: string
  privacy?: VideoPrivacy
  tags?: string[]
  commentsEnabled?: boolean
  nsfw?: boolean
}