Fix sur le formulaire d'ajout de sauts

This commit is contained in:
Sébastien André
2020-05-05 13:21:54 +02:00
parent 9d3ea9900c
commit db6923f5a3
4 changed files with 32 additions and 8 deletions

View File

@@ -12,6 +12,10 @@ export class DropZoneResp {
public email: string;
public type: Array<string>;
public isFavorite: boolean;
public isType(searchedType: string): boolean {
return this.type.includes(searchedType);
}
}
export class DropZoneReq {