feat(api): promote uat → main — /api/readyz DB health check (GRO-2687) #235

Merged
Flea Flicker merged 13 commits from uat into main 2026-08-09 11:04:17 +00:00
Showing only changes of commit 7dfa1ad830 - Show all commits
+1 -1
View File
@@ -23,7 +23,7 @@ if (process.env.AUTH_DISABLED === "true") {
}
export const authMiddleware: MiddlewareHandler = async (c, next) => {
if (c.req.path.startsWith("/api/auth/") || c.req.path === "/api/health") {
if (c.req.path.startsWith("/api/auth/") || c.req.path === "/api/health" || c.req.path === "/api/readyz") {
await next();
return;
}