PeerTube/shared/models/videos/blacklist/video-blacklist.model.ts

19 lines
288 B
TypeScript
Raw Normal View History

import { Video } from '../video.model'
export enum VideoBlacklistType {
MANUAL = 1,
AUTO_BEFORE_PUBLISHED = 2
}
2018-08-14 07:08:47 +00:00
export interface VideoBlacklist {
2017-06-10 20:15:25 +00:00
id: number
unfederated: boolean
2018-08-13 14:57:13 +00:00
reason?: string
type: VideoBlacklistType
2018-08-13 14:57:13 +00:00
video: Video
createdAt: Date
updatedAt: Date
2017-06-10 20:15:25 +00:00
}