Update to have a configuration file out of the

app bundle.
This commit is contained in:
Sébastien André
2021-02-03 10:57:30 +01:00
parent 9a9dc3fbea
commit 671f02f440
18 changed files with 99 additions and 34 deletions

View File

@@ -25,10 +25,9 @@ export class AircraftService extends BaseService {
imageData: dataImg
};
this.http
.post(`${this.apiUrl}/Aircraft`, bodyNewAircraft, {
headers: this.headers
})
.subscribe(data => console.log(data));
this.http.post(`${this.apiUrl}/Aircraft`,
bodyNewAircraft,
{ headers: this.headers })
.subscribe(data => console.log(data));
}
}