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 {
|
||||
id: string;
|
||||
nom: string;
|
||||
|
@ -8,5 +10,5 @@ export interface Membre {
|
|||
couleur: string;
|
||||
passwordConfirm: string;
|
||||
roleList: string[];
|
||||
teamId?: string;
|
||||
team?: Team[];
|
||||
}
|
||||
|
|
|
@ -85,7 +85,7 @@ export class PageSignupComponent implements OnInit {
|
|||
couleur: couleurValue,
|
||||
dateNaissance: dateNaissanceValue,
|
||||
passwordConfirm: passwordConfirmValue,
|
||||
teamId: teamIdValue,
|
||||
team:[teamIdValue, teamNameValue],
|
||||
roleList: roleValue,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue