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