From 5771a182fea0f70c124e767b99f8d27b77ded309 Mon Sep 17 00:00:00 2001 From: sherl Date: Tue, 27 Jan 2026 12:51:49 +0100 Subject: [PATCH] fix: add robots.txt to forbidden url schemas --- 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 3277656..af6f907 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|healthcheck|kttydocs|panel)/); + .regex(/^(about|assets|healthcheck|kttydocs|panel|robots\.txt)/);