]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/blacklist/video-blacklist.model.ts
68d59e4892b4138ca63a698648c7c2d3a5a28739
[github/Chocobozzz/PeerTube.git] / shared / models / videos / blacklist / video-blacklist.model.ts
1 import { Video } from '../video.model'
2
3 export enum VideoBlacklistType {
4 MANUAL = 1,
5 AUTO_BEFORE_PUBLISHED = 2
6 }
7
8 export interface VideoBlacklist {
9 id: number
10 createdAt: Date
11 updatedAt: Date
12 unfederated: boolean
13 reason?: string
14 type: VideoBlacklistType
15
16 video: Video
17 }