Merge pull request #10 from AlineRinquin/sana

creation-team connection back ok
This commit is contained in:
AlineRinquin 2022-01-21 14:59:46 +01:00 committed by GitHub
commit 241b71e566
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View file

@ -64,7 +64,7 @@ export class AuthService {
creationTeam(team: Team): Observable<any> {
console.log(team);
return this.http.post(`${this.apiUrl}/creation-compte`, team);
return this.http.post(`${this.apiUrl}/teams/add`, team);
}