realistion de la page Mon Profil

This commit is contained in:
MiharyR 2021-10-31 02:17:23 +01:00
parent 4138c22051
commit 7ebacdc287
18 changed files with 702 additions and 145 deletions

View file

@ -3,6 +3,7 @@ import {Video} from "../../interfaces/video";
import {Playlist} from "../../interfaces/playlist";
import {Advert} from "../../interfaces/advert";
import {WatchedVideo} from "../../interfaces/watchedVideo";
import {User} from "../../interfaces/user";
@ -167,4 +168,18 @@ export class FictitiousDatasService
return tabWatchedVideo;
}
getUser(): User
{
return {
_id: "blablablaId",
login: "yoyo",
hashPass: "agourgroou",
mail: "yoyo@gmail.com",
role: "user",
profilePictureUrl: "https://ih1.redbubble.net/image.945612860.1330/flat,750x1000,075,f.jpg"
}
}
}