diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/videos/blacklist/video-blacklist.model.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shared/models/videos/blacklist/video-blacklist.model.ts b/shared/models/videos/blacklist/video-blacklist.model.ts index 68d59e489..a6e0ef175 100644 --- a/shared/models/videos/blacklist/video-blacklist.model.ts +++ b/shared/models/videos/blacklist/video-blacklist.model.ts | |||
@@ -7,11 +7,12 @@ export enum VideoBlacklistType { | |||
7 | 7 | ||
8 | export interface VideoBlacklist { | 8 | export interface VideoBlacklist { |
9 | id: number | 9 | id: number |
10 | createdAt: Date | ||
11 | updatedAt: Date | ||
12 | unfederated: boolean | 10 | unfederated: boolean |
13 | reason?: string | 11 | reason?: string |
14 | type: VideoBlacklistType | 12 | type: VideoBlacklistType |
15 | 13 | ||
16 | video: Video | 14 | video: Video |
15 | |||
16 | createdAt: Date | ||
17 | updatedAt: Date | ||
17 | } | 18 | } |