This commit is contained in:
Yûki VACHOT 2021-11-12 16:24:04 +01:00
parent 3ec65bb72d
commit ca0ae3e991
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ export class PageLoginComponent implements OnInit
"password": this.password
};
this.messageService
.sendMessage('connexion', data)
.sendMessage('user/auth', data)
.subscribe( retour => this.maCallback(retour))
}
}

View file

@ -1,4 +1,4 @@
export const environment = {
production: true,
debutUrl: "https://localhost/api/"
debutUrl: "https://polynotfound.herokuapp.com/api/"
};