diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-22 10:46:54 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-22 10:46:54 +0200 |
commit | d636ab58d042494ef9d17b2d9c4c841bae01c897 (patch) | |
tree | c199a0b346ca20f6891495a9b312a3009da9eb30 /server/typings/models | |
parent | 5c5e587307a27e173333789b5b5167d35f468b01 (diff) | |
download | PeerTube-d636ab58d042494ef9d17b2d9c4c841bae01c897.tar.gz PeerTube-d636ab58d042494ef9d17b2d9c4c841bae01c897.tar.zst PeerTube-d636ab58d042494ef9d17b2d9c4c841bae01c897.zip |
Fix html tag with blacklisted video
Diffstat (limited to 'server/typings/models')
-rw-r--r-- | server/typings/models/video/video.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/typings/models/video/video.ts b/server/typings/models/video/video.ts index be32d4617..9a53bd337 100644 --- a/server/typings/models/video/video.ts +++ b/server/typings/models/video/video.ts | |||
@@ -52,6 +52,10 @@ export type MVideoWithFileThumbnail = MVideo & | |||
52 | Use<'VideoFiles', MVideoFile[]> & | 52 | Use<'VideoFiles', MVideoFile[]> & |
53 | Use<'Thumbnails', MThumbnail[]> | 53 | Use<'Thumbnails', MThumbnail[]> |
54 | 54 | ||
55 | export type MVideoThumbnailBlacklist = MVideo & | ||
56 | Use<'Thumbnails', MThumbnail[]> & | ||
57 | Use<'VideoBlacklist', MVideoBlacklistLight> | ||
58 | |||
55 | export type MVideoTag = MVideo & | 59 | export type MVideoTag = MVideo & |
56 | Use<'Tags', MTag[]> | 60 | Use<'Tags', MTag[]> |
57 | 61 | ||