limitations au ROLE_ENFANT sur page account/ modifier, supprimer et ajouter membre ok

This commit is contained in:
Sana EL HIRI 2022-03-07 10:32:37 +01:00
parent 2dd153198e
commit 95d9ab28f0
10 changed files with 56 additions and 15 deletions

View file

@ -1,3 +1,5 @@
import { Team } from "./team";
export interface Membre {
id: string;
nom: string;
@ -7,6 +9,6 @@ export interface Membre {
dateNaissance: Date;
couleur: string;
passwordConfirm: string;
// smiley: string;
//team: Team;
roleList: string[];
}

View file

@ -1,3 +1,4 @@
export interface Team {
id: string;
nom : string;
}