feat(prime): carry the action kind through the hub and validate custom prompts

This commit is contained in:
mika kuns
2026-08-25 08:51:37 +02:00
parent cf6a6b6208
commit 4e8e0334b2
4 changed files with 62 additions and 4 deletions
@@ -8,7 +8,7 @@ public class NextDueCalculatorTests
private static PrimeScheduleDto Schedule(
PrimeDays days, TimeSpan time,
bool enabled = true, DateTimeOffset? lastRun = null) =>
new(Guid.NewGuid(), (int)days, time, enabled, lastRun, null);
new(Guid.NewGuid(), (int)days, time, enabled, lastRun, null, PrimeActionKind.FillMyDay);
[Fact]
public void Disabled_Schedule_Returns_Null()