Skip to content

Commit

Permalink
Remove InspectionType from in memory database
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadUsama-afk-equinor authored and Afonso-2403 committed Feb 9, 2024
1 parent 025020e commit 9414ccc
Show file tree
Hide file tree
Showing 4 changed files with 1,400 additions and 31 deletions.
14 changes: 7 additions & 7 deletions backend/api/Database/Context/InitDb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ private static List<MissionTask> GetMissionTasks()
{
new()
}
}, new Position(1.0f, 1.0f, 1.0f))
})
{
Status = TaskStatus.Successful
};
Expand All @@ -446,7 +446,7 @@ private static List<MissionTask> GetMissionTasks()
{
new()
}
}, new Position(1.0f, 1.0f, 1.0f))
})
{
Status = TaskStatus.Failed
};
Expand All @@ -466,7 +466,7 @@ private static List<MissionTask> GetMissionTasks()
{
new()
}
}, new Position(1.0f, 1.0f, 1.0f))
})
{
Status = TaskStatus.PartiallySuccessful
};
Expand All @@ -486,7 +486,7 @@ private static List<MissionTask> GetMissionTasks()
{
new()
}
}, new Position(1.0f, 1.0f, 1.0f))
})
{
Status = TaskStatus.Cancelled
};
Expand All @@ -506,7 +506,7 @@ private static List<MissionTask> GetMissionTasks()
{
new()
}
}, new Position(1.0f, 1.0f, 1.0f))
})
{
Status = TaskStatus.Failed
};
Expand All @@ -526,7 +526,7 @@ private static List<MissionTask> GetMissionTasks()
{
new()
}
}, new Position(1.0f, 1.0f, 1.0f))
})
{
Status = TaskStatus.Failed
};
Expand All @@ -546,7 +546,7 @@ private static List<MissionTask> GetMissionTasks()
{
new()
}
}, new Position(1.0f, 1.0f, 1.0f))
})
{
Status = TaskStatus.Failed
};
Expand Down
Loading

0 comments on commit 9414ccc

Please sign in to comment.