]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/shared/video-details.model.ts
Lazy description and previews to video form
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / shared / video-details.model.ts
index 3a6ecc480449ea0c4e585ba8f6b7a587c16c96f5..68ded5210161153a6737ad384775a71a4091f229 100644 (file)
@@ -38,12 +38,14 @@ export class VideoDetails extends Video implements VideoDetailsServerModel {
   likes: number
   dislikes: number
   nsfw: boolean
+  descriptionPath: string
   files: VideoFile[]
   channel: VideoChannel
 
   constructor (hash: VideoDetailsServerModel) {
     super(hash)
 
+    this.descriptionPath = hash.descriptionPath
     this.files = hash.files
     this.channel = hash.channel
   }