partie 'beforeConnexion' entierement connectée avec le back

This commit is contained in:
MiharyR 2021-12-11 14:17:10 +01:00
parent 411cea6ff0
commit cf3c596c7b
4 changed files with 39 additions and 15 deletions

View file

@ -11,7 +11,7 @@ export interface User
profileImageUrl: string,
dateOfBirth: Date,
gender: string,
interests: string[],
interests: any[],
company: string,
isActive: boolean,
isAccepted: boolean,
@ -19,3 +19,15 @@ export interface User
createdAt: Date,
updatedAt: Date
}
interface VideoCategorie
{
id: number
interest: string
categories: {
id: string
name: string
source: string
}
}