File tree Expand file tree Collapse file tree
backend/api/Database/Context Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -337,6 +337,16 @@ private static List<MissionDefinition> GetMissionDefinitions()
337337 LastSuccessfulRun = null ,
338338 } ;
339339
340+ var cloeMission = new MissionDefinition
341+ {
342+ Id = Guid . NewGuid ( ) . ToString ( ) ,
343+ Name = "Constant Level Oiler Mission" ,
344+ InstallationCode = inspectionAreas [ 5 ] . Installation . InstallationCode ,
345+ InspectionArea = inspectionAreas [ 5 ] ,
346+ Tasks = [ GetMissionTaskDefinitions ( ) [ 1 ] ] ,
347+ LastSuccessfulRun = null ,
348+ } ;
349+
340350 return new List < MissionDefinition > ( [
341351 missionDefinition1 ,
342352 missionDefinition2 ,
@@ -345,6 +355,7 @@ private static List<MissionDefinition> GetMissionDefinitions()
345355 missionDefinition5 ,
346356 missionDefinition6 ,
347357 thermalReadingMission ,
358+ cloeMission ,
348359 ] ) ;
349360 }
350361
You can’t perform that action at this time.
0 commit comments