diff options
Diffstat (limited to 'shared/models/videos/blacklist/video-blacklist.model.ts')
-rw-r--r-- | shared/models/videos/blacklist/video-blacklist.model.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/shared/models/videos/blacklist/video-blacklist.model.ts b/shared/models/videos/blacklist/video-blacklist.model.ts deleted file mode 100644 index 982a34592..000000000 --- a/shared/models/videos/blacklist/video-blacklist.model.ts +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | import { Video } from '../video.model' | ||
2 | |||
3 | export const enum VideoBlacklistType { | ||
4 | MANUAL = 1, | ||
5 | AUTO_BEFORE_PUBLISHED = 2 | ||
6 | } | ||
7 | |||
8 | export 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 | } | ||