aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/utils/videos/video-playlists.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/utils/videos/video-playlists.ts')
-rw-r--r--shared/utils/videos/video-playlists.ts16
1 files changed, 15 insertions, 1 deletions
diff --git a/shared/utils/videos/video-playlists.ts b/shared/utils/videos/video-playlists.ts
index b84b21623..ad65bec56 100644
--- a/shared/utils/videos/video-playlists.ts
+++ b/shared/utils/videos/video-playlists.ts
@@ -275,6 +275,18 @@ function getVideoPlaylistPrivacies (url: string) {
275 }) 275 })
276} 276}
277 277
278function doVideosExistInMyPlaylist (url: string, token: string, videoIds: number[]) {
279 const path = '/api/v1/users/me/video-playlists/videos-exist'
280
281 return makeGetRequest({
282 url,
283 token,
284 path,
285 query: { videoIds },
286 statusCodeExpected: 200
287 })
288}
289
278// --------------------------------------------------------------------------- 290// ---------------------------------------------------------------------------
279 291
280export { 292export {
@@ -298,5 +310,7 @@ export {
298 310
299 reorderVideosPlaylist, 311 reorderVideosPlaylist,
300 312
301 checkPlaylistFilesWereRemoved 313 checkPlaylistFilesWereRemoved,
314
315 doVideosExistInMyPlaylist
302} 316}