]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/blacklist/video-blacklist.model.ts
Create a dedicated table to track video thumbnails
[github/Chocobozzz/PeerTube.git] / shared / models / videos / blacklist / video-blacklist.model.ts
CommitLineData
7ccddd7b
JM
1import { Video } from '../video.model'
2
3export enum VideoBlacklistType {
4 MANUAL = 1,
5 AUTO_BEFORE_PUBLISHED = 2
6}
7
191764f3 8export interface VideoBlacklist {
69818c93 9 id: number
69818c93 10 createdAt: Date
792dbaf0 11 updatedAt: Date
5abb9fbb 12 unfederated: boolean
26b7305a 13 reason?: string
7ccddd7b 14 type: VideoBlacklistType
26b7305a 15
7ccddd7b 16 video: Video
69818c93 17}