Phase 12: Initial Setup Wizard #22
@@ -63,7 +63,11 @@ const configSchema = z.object({
|
|||||||
.refine((v) => v.startsWith('https://'), { message: 'oidcIssuer must be an https URL' }),
|
.refine((v) => v.startsWith('https://'), { message: 'oidcIssuer must be an https URL' }),
|
||||||
oidcClientId: z.string().min(1).max(256),
|
oidcClientId: z.string().min(1).max(256),
|
||||||
vapidPublicKey: z.string().min(1).max(512),
|
vapidPublicKey: z.string().min(1).max(512),
|
||||||
appExternalUrl: z.string().url().max(512),
|
appExternalUrl: z
|
||||||
|
.string()
|
||||||
|
.url()
|
||||||
|
.max(512)
|
||||||
|
.refine((v) => v.startsWith('https://'), { message: 'appExternalUrl must be an https URL' }),
|
||||||
});
|
});
|
||||||
|
|
||||||
const credentialSchema = z.object({
|
const credentialSchema = z.object({
|
||||||
|
|||||||
Reference in New Issue
Block a user