['dateOfBirth' non obligatoire] + [popup forgotten password]
This commit is contained in:
parent
a70574a8e2
commit
7a0d1136a9
30 changed files with 262 additions and 454 deletions
|
|
@ -12,6 +12,7 @@ import {Router} from "@angular/router";
|
|||
|
||||
|
||||
interface VideoHistory {
|
||||
videoId: string,
|
||||
imageUrl: string,
|
||||
title: string,
|
||||
date: Date,
|
||||
|
|
@ -115,6 +116,7 @@ export class PageHistoryUserComponent implements AfterViewInit
|
|||
videoAllToVideoHistory(videoAll: VideoAll): VideoHistory
|
||||
{
|
||||
return {
|
||||
videoId: videoAll.videoId,
|
||||
imageUrl: videoAll.imageUrl,
|
||||
title: videoAll.title,
|
||||
date: videoAll.watchedDates[videoAll.watchedDates.length-1],
|
||||
|
|
|
|||
Reference in a new issue