refactor: rename project from Flights to Missions and update related components
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:
Oleksandr Bezdieniezhnykh
2026-05-15 04:35:49 +03:00
parent 4f226e91d5
commit 2840ccb9b6
51 changed files with 381 additions and 352 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
using LinqToDB.Mapping;
using Azaion.Flights.Enums;
using Azaion.Missions.Enums;
namespace Azaion.Flights.Database.Entities;
namespace Azaion.Missions.Database.Entities;
[Table("map_objects")]
public class MapObject
@@ -10,8 +10,8 @@ public class MapObject
[Column("id")]
public Guid Id { get; set; }
[Column("flight_id")]
public Guid FlightId { get; set; }
[Column("mission_id")]
public Guid MissionId { get; set; }
[Column("h3_index")]
public string H3Index { get; set; } = string.Empty;