|
@@ -32,19 +32,17 @@ export class AirportService {
|
|
}
|
|
}
|
|
|
|
|
|
async registerAirport(airport: Airport): Promise<boolean> {
|
|
async registerAirport(airport: Airport): Promise<boolean> {
|
|
- this.airportExists(airport.icao).then(async (exists) => {
|
|
|
|
|
|
+ return this.airportExists(airport.icao).then(async (exists) => {
|
|
if (!exists) {
|
|
if (!exists) {
|
|
await this.airportModel.create(airport);
|
|
await this.airportModel.create(airport);
|
|
}
|
|
}
|
|
|
|
|
|
return !exists;
|
|
return !exists;
|
|
});
|
|
});
|
|
-
|
|
|
|
- return false;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
async updateAirport(airport: Airport): Promise<boolean> {
|
|
async updateAirport(airport: Airport): Promise<boolean> {
|
|
- this.airportExists(airport.icao).then(async (exists) => {
|
|
|
|
|
|
+ return this.airportExists(airport.icao).then(async (exists) => {
|
|
if (exists) {
|
|
if (exists) {
|
|
await this.airportModel.findOneAndUpdate(
|
|
await this.airportModel.findOneAndUpdate(
|
|
{ icao: airport.icao },
|
|
{ icao: airport.icao },
|
|
@@ -54,8 +52,6 @@ export class AirportService {
|
|
|
|
|
|
return exists;
|
|
return exists;
|
|
});
|
|
});
|
|
-
|
|
|
|
- return false;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
async deleteAirport(icao: string): Promise<void> {
|
|
async deleteAirport(icao: string): Promise<void> {
|