modifs
This commit is contained in:
parent
c07b32cad1
commit
bd9610275d
2 changed files with 4 additions and 2 deletions
|
@ -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[];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue