X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2Fshared%2Fvideo.model.ts;h=5ed622dce63757067c7d8c2c39ba40b675db32b2;hb=d07137b90b2b2b0c1e93a6f0e7bf8719b133027c;hp=b5d96f63a45b91b27eb8b355441d4eec8c2d5234;hpb=6e07c3de88791a0b342e0cc319590048117f9c2d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/shared/video.model.ts b/client/src/app/videos/shared/video.model.ts index b5d96f63a..5ed622dce 100644 --- a/client/src/app/videos/shared/video.model.ts +++ b/client/src/app/videos/shared/video.model.ts @@ -3,6 +3,7 @@ export class Video { by: string; createdAt: Date; categoryLabel: string; + licenceLabel: string; description: string; duration: string; id: string; @@ -33,6 +34,7 @@ export class Video { author: string, createdAt: string, categoryLabel: string, + licenceLabel: string, description: string, duration: number; id: string, @@ -49,6 +51,7 @@ export class Video { this.author = hash.author; this.createdAt = new Date(hash.createdAt); this.categoryLabel = hash.categoryLabel; + this.licenceLabel = hash.licenceLabel; this.description = hash.description; this.duration = Video.createDurationString(hash.duration); this.id = hash.id;