mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
19 lines
288 B
TypeScript
19 lines
288 B
TypeScript
import { Video } from '../video.model'
|
|
|
|
export enum VideoBlacklistType {
|
|
MANUAL = 1,
|
|
AUTO_BEFORE_PUBLISHED = 2
|
|
}
|
|
|
|
export interface VideoBlacklist {
|
|
id: number
|
|
unfederated: boolean
|
|
reason?: string
|
|
type: VideoBlacklistType
|
|
|
|
video: Video
|
|
|
|
createdAt: Date
|
|
updatedAt: Date
|
|
}
|