1
0
Fork 0
peertube/shared/models/videos/blacklist/video-blacklist.model.ts

19 lines
294 B
TypeScript
Raw Normal View History

import { Video } from '../video.model'
2020-08-06 12:58:01 +00:00
export const 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
}