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 {
id: string;
nom: string;
@ -8,5 +10,5 @@ export interface Membre {
couleur: string;
passwordConfirm: string;
roleList: string[];
teamId?: string;
team?: Team[];
}

View file

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