aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Services/ArrivalsPipeline.cs
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-03-15 23:01:32 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-03-15 23:01:32 +0100
commit99005bce74288a415ac748414e0f8b522e207c93 (patch)
tree2aacb51f1ebbd58a687b176ed81dc240970db878 /src/Enmarcha.Backend/Services/ArrivalsPipeline.cs
parentc0e758b1e793159fc86c85916130f8959360c64e (diff)
feat: enhance arrival processing with shift badge retrieval and deletion flag
Diffstat (limited to 'src/Enmarcha.Backend/Services/ArrivalsPipeline.cs')
-rw-r--r--src/Enmarcha.Backend/Services/ArrivalsPipeline.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Enmarcha.Backend/Services/ArrivalsPipeline.cs b/src/Enmarcha.Backend/Services/ArrivalsPipeline.cs
index 9e44535..4837051 100644
--- a/src/Enmarcha.Backend/Services/ArrivalsPipeline.cs
+++ b/src/Enmarcha.Backend/Services/ArrivalsPipeline.cs
@@ -66,5 +66,7 @@ public class ArrivalsPipeline
using var processorActivity = Telemetry.Source.StartActivity($"Processor:{processor.GetType().Name}");
await processor.ProcessAsync(context);
}
+
+ context.Arrivals = context.Arrivals.Where(a => !a.Delete).ToList();
}
}