]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-streaming-playlist.model.ts
Add ability to disable webtorrent
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-streaming-playlist.model.ts
index 17f8fe865cc680d2cf2d4c8060a416b4f5fab41b..42fce4bdcfb4d848bfc5f79bab09f683cbe0bc41 100644 (file)
@@ -1,4 +1,5 @@
 import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
+import { VideoFile } from '@shared/models/videos/video-file.model'
 
 export class VideoStreamingPlaylist {
   id: number
@@ -9,4 +10,6 @@ export class VideoStreamingPlaylist {
   redundancies: {
     baseUrl: string
   }[]
+
+  files: VideoFile[]
 }