This commit is contained in:
Sana EL HIRI 2022-03-07 20:03:04 +01:00
parent c07b32cad1
commit bd9610275d
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,5 @@
import { Team } from "./team";
export interface Membre { export interface Membre {
id: string; id: string;
nom: string; nom: string;
@ -8,5 +10,5 @@ export interface Membre {
couleur: string; couleur: string;
passwordConfirm: string; passwordConfirm: string;
roleList: string[]; roleList: string[];
teamId?: string; team?: Team[];
} }

View file

@ -85,7 +85,7 @@ export class PageSignupComponent implements OnInit {
couleur: couleurValue, couleur: couleurValue,
dateNaissance: dateNaissanceValue, dateNaissance: dateNaissanceValue,
passwordConfirm: passwordConfirmValue, passwordConfirm: passwordConfirmValue,
teamId: teamIdValue, team:[teamIdValue, teamNameValue],
roleList: roleValue, roleList: roleValue,
}; };