promote: uat → main (GRO-1757 SSO auto-provision fix) #89

Merged
Scrubs McBarkley merged 35 commits from uat into main 2026-05-26 02:15:58 +00:00
Showing only changes of commit 00c6a36021 - 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/")) {
if (c.req.path.startsWith("/api/auth/") || c.req.path === "/api/health") {
await next();
return;
}