blob: a6e0ef175a59d0dca83ebe3112a311ea48e5af64 (
plain) (
tree)
|
|
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
}
|