aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/blacklist/video-blacklist.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/blacklist/video-blacklist.model.ts')
-rw-r--r--shared/models/videos/blacklist/video-blacklist.model.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/models/videos/blacklist/video-blacklist.model.ts b/shared/models/videos/blacklist/video-blacklist.model.ts
index e6090b1e9..a6e0ef175 100644
--- a/shared/models/videos/blacklist/video-blacklist.model.ts
+++ b/shared/models/videos/blacklist/video-blacklist.model.ts
@@ -1,15 +1,15 @@
1import { Video } from '../video.model' 1import { Video } from '../video.model'
2 2
3export enum VideoBlockType { 3export enum VideoBlacklistType {
4 MANUAL = 1, 4 MANUAL = 1,
5 AUTO_BEFORE_PUBLISHED = 2 5 AUTO_BEFORE_PUBLISHED = 2
6} 6}
7 7
8export interface VideoBlocklist { 8export interface VideoBlacklist {
9 id: number 9 id: number
10 unfederated: boolean 10 unfederated: boolean
11 reason?: string 11 reason?: string
12 type: VideoBlockType 12 type: VideoBlacklistType
13 13
14 video: Video 14 video: Video
15 15