aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-06-17 16:02:38 +0200
committerChocobozzz <chocobozzz@cpy.re>2021-06-25 14:44:01 +0200
commit37a44fc915eef2140e22ceb96aba6b6eb2509007 (patch)
treedd4a370ecc96cf38c99b940261aadc27065da7ae /server/types
parent33eb19e5199cc9fa4d73c6675c97508e3e072ef9 (diff)
downloadPeerTube-37a44fc915eef2140e22ceb96aba6b6eb2509007.tar.gz
PeerTube-37a44fc915eef2140e22ceb96aba6b6eb2509007.tar.zst
PeerTube-37a44fc915eef2140e22ceb96aba6b6eb2509007.zip
Add ability to search playlists
Diffstat (limited to 'server/types')
-rw-r--r--server/types/models/video/video-playlist.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/types/models/video/video-playlist.ts b/server/types/models/video/video-playlist.ts
index 79e2daebf..2f9537cf5 100644
--- a/server/types/models/video/video-playlist.ts
+++ b/server/types/models/video/video-playlist.ts
@@ -69,7 +69,7 @@ export type MVideoPlaylistAccountChannelDefault =
69// With all associations 69// With all associations
70 70
71export type MVideoPlaylistFull = 71export type MVideoPlaylistFull =
72 MVideoPlaylist & 72 MVideoPlaylistVideosLength &
73 Use<'OwnerAccount', MAccountDefault> & 73 Use<'OwnerAccount', MAccountDefault> &
74 Use<'VideoChannel', MChannelDefault> & 74 Use<'VideoChannel', MChannelDefault> &
75 Use<'Thumbnail', MThumbnail> 75 Use<'Thumbnail', MThumbnail>
@@ -84,7 +84,7 @@ export type MVideoPlaylistAccountChannelSummary =
84 Use<'VideoChannel', MChannelSummary> 84 Use<'VideoChannel', MChannelSummary>
85 85
86export type MVideoPlaylistFullSummary = 86export type MVideoPlaylistFullSummary =
87 MVideoPlaylist & 87 MVideoPlaylistVideosLength &
88 Use<'Thumbnail', MThumbnail> & 88 Use<'Thumbnail', MThumbnail> &
89 Use<'OwnerAccount', MAccountSummary> & 89 Use<'OwnerAccount', MAccountSummary> &
90 Use<'VideoChannel', MChannelSummary> 90 Use<'VideoChannel', MChannelSummary>