CUB-38: implement low filament alert logic with configurable threshold
Some checks failed
Dev Build / build-test (pull_request) Failing after 45s
Dev Build / deploy-dev (pull_request) Has been skipped
Dev Build / notify-success (pull_request) Has been skipped
Dev Build / notify-failure (pull_request) Successful in 7s

This commit is contained in:
2026-04-27 17:36:49 +00:00
parent 8168d25bdf
commit 4c91bb7862
6 changed files with 202 additions and 8 deletions

View File

@@ -50,6 +50,9 @@ builder.Services.AddSwaggerGen(c =>
// ── QR Code Generation ──────────────────────────────────────
builder.Services.AddSingleton<IQrCodeService, QrCodeService>();
// ── Low Stock Detection ────────────────────────────────────
builder.Services.AddSingleton<ILowStockDetector, LowStockDetector>();
// ── FluentValidation ──────────────────────────────────────
// Registers all validators from the API assembly into DI.
builder.Services.AddValidatorsFromAssembly(Assembly.GetExecutingAssembly());