move route compute to create service as entity creation is not async

This commit is contained in:
sbriat
2023-08-22 16:14:36 +02:00
parent 4762c844e1
commit ac8e459e90
27 changed files with 403 additions and 94 deletions

View File

@@ -33,7 +33,7 @@ export class RouteMapper
response.fwdAzimuth = entity.getProps().fwdAzimuth;
response.backAzimuth = entity.getProps().backAzimuth;
response.distanceAzimuth = entity.getProps().distanceAzimuth;
response.spacetimePoints = entity.getProps().spacetimePoints;
response.points = entity.getProps().points;
return response;
};
}