feat: Add project-scoped language for unsubscribe footer and contact-facing pages

This commit is contained in:
Dries Augustyns
2025-12-21 13:09:21 +01:00
parent 8a136dde55
commit e1f826357d
15 changed files with 499 additions and 41 deletions
+1
View File
@@ -67,6 +67,7 @@ export const ProjectSchemas = {
update: z.object({
name: z.string().min(1).max(100).optional(),
tracking: z.nativeEnum(TrackingMode).optional(),
language: z.string().length(2).regex(/^[a-z]{2}$/).optional(),
}),
} as const;