|
@@ -140,6 +140,8 @@ export class AirportController {
|
|
|
planning: AirportController.convertPlanning<PlanningDto, AssignmentDto>(
|
|
|
airport.planning,
|
|
|
),
|
|
|
+ activeRunways: airport.activeRunways,
|
|
|
+ arrivalMode: airport.arrivalMode,
|
|
|
};
|
|
|
}
|
|
|
|
|
@@ -167,6 +169,8 @@ export class AirportController {
|
|
|
planning: AirportController.convertPlanning<Planning, Assignment>(
|
|
|
airport.planning,
|
|
|
),
|
|
|
+ activeRunways: airport.activeRunways,
|
|
|
+ arrivalMode: airport.arrivalMode,
|
|
|
};
|
|
|
}
|
|
|
|