fix(GRO-689): only validate authorizationUrl hostname, add OIDC_INTERNAL_BASE in dev #302

Merged
scrubs-mcbarkley-ceo[bot] merged 5 commits from fix/gro-689-oidc-hostname-validation into main 2026-04-16 05:18:58 +00:00
Showing only changes of commit 376180ab9d - Show all commits
+1 -1
View File
@@ -8,7 +8,7 @@ export const clientsRouter = new Hono<AppEnv>();
const createClientSchema = z.object({
name: z.string().min(1).max(200),
email: z.string().email().optional(),
email: z.string().email(),
phone: z.string().max(50).optional(),
address: z.string().max(500).optional(),
notes: z.string().max(2000).optional(),