mirror of
https://github.com/azaion/missions.git
synced 2026-06-21 08:11:06 +00:00
refactor: rename project from Flights to Missions and update related components
ci/woodpecker/push/build-arm Pipeline was successful
ci/woodpecker/push/build-arm Pipeline was successful
This commit transitions the project from Azaion.Flights to Azaion.Missions, updating namespaces, DTOs, services, and database entities accordingly. The Docker configuration and entry points have been modified to reflect the new project structure. Additionally, the README and documentation have been updated to clarify the ongoing renaming process and its implications. All references to flights have been replaced with missions, ensuring consistency across the codebase.
This commit is contained in:
+5
-2
@@ -1,8 +1,11 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
namespace Azaion.Missions.Enums;
|
||||
|
||||
// Numeric values are persisted in the `vehicles.fuel_type` column. Do NOT reorder
|
||||
// or reassign existing values -- live rows would silently become a different fuel.
|
||||
public enum FuelType
|
||||
{
|
||||
Electric = 0,
|
||||
Gasoline = 1,
|
||||
Diesel = 2
|
||||
Diesel = 2,
|
||||
SolidPropellant = 3
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
namespace Azaion.Missions.Enums;
|
||||
|
||||
public enum ObjectStatus
|
||||
{
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
namespace Azaion.Missions.Enums;
|
||||
|
||||
public enum AircraftType
|
||||
// Numeric values are persisted in the `vehicles.type` column. Do NOT reorder or
|
||||
// reassign existing values -- live rows would silently become a different type.
|
||||
public enum VehicleType
|
||||
{
|
||||
Plane = 0,
|
||||
Copter = 1
|
||||
Copter = 1,
|
||||
UGV = 2,
|
||||
GuidedMissile = 3
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
namespace Azaion.Missions.Enums;
|
||||
|
||||
public enum WaypointObjective
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
namespace Azaion.Missions.Enums;
|
||||
|
||||
public enum WaypointSource
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user