fix: increase max workspace url length from 24 to 64 characters (closes #379( (#398)

This commit is contained in:
Matt
2026-02-17 09:40:58 -04:00
committed by GitHub
parent 1696aab43b
commit b6b9423823
5 changed files with 8 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ import { withRateLimit } from "@kan/api/utils/rateLimit";
const workspaceSlugSchema = z
.string()
.min(3)
.max(24)
.max(64)
.regex(/^(?![-]+$)[a-zA-Z0-9-]+$/);
interface CheckoutSessionRequest {