From 512eb722a5e3d4c337ad3ea7a1e408b65c0a7923 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Wed, 15 Jul 2026 00:34:39 +0530 Subject: [PATCH] chore(employees): retrigger isolated CI build The prior push (crates/cache change) rebuilt all 20 workspace services concurrently, and the employees job's build/push landed a digest that doesn't exist in the registry (kubectl confirmed ImagePullBackOff with "not found" resolving that exact sha256). This commit only touches apps/employees/ so the CI path-filter rebuilds just that one service in isolation, without the same concurrent-build congestion. Co-Authored-By: Claude Sonnet 5 --- apps/employees/src/handlers/auth.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/employees/src/handlers/auth.rs b/apps/employees/src/handlers/auth.rs index 20e0791..6eef70c 100644 --- a/apps/employees/src/handlers/auth.rs +++ b/apps/employees/src/handlers/auth.rs @@ -15,6 +15,7 @@ use contracts::auth_middleware::AuthUser; use crate::AppState; pub fn router() -> Router { + // Includes forgot-password / reset-password against EmployeeRepository. Router::new() .route("/login", post(login)) .route("/logout", post(logout))