Merge pull request #4 from AlineRinquin/isa

Isa
This commit is contained in:
AlineRinquin 2022-01-21 09:43:52 +01:00 committed by GitHub
commit 60a12b50ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 248 additions and 11 deletions

View file

@ -55,4 +55,11 @@ export class AuthService {
return this.http.post(`${this.apiUrl}/forgot-psw`, body);
}
addMember(membre: Membre): Observable<any> {
console.log(membre);
return this.http.post(`${this.apiUrl}/tableau-de-bord`, membre);
}
}