From 413aa8994adbdbbd9699625d7881b4cefc55ee72 Mon Sep 17 00:00:00 2001 From: sherl Date: Sat, 3 Jan 2026 11:05:25 +0100 Subject: [PATCH] fix: include healthcheck as part of protected urls --- src/schemas/miscSchema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemas/miscSchema.ts b/src/schemas/miscSchema.ts index 0f0cd24..3277656 100644 --- a/src/schemas/miscSchema.ts +++ b/src/schemas/miscSchema.ts @@ -29,4 +29,4 @@ export type ErrorDTO = { // Used to check against reserved names. export const disallowedUriSchema = z .string() - .regex(/^(about|assets|kttydocs|panel)/); + .regex(/^(about|assets|healthcheck|kttydocs|panel)/);