frontend implementation of iconURL

This commit is contained in:
Oliver Bryan
2026-01-21 13:45:14 +00:00
parent e3ca50f1ad
commit ee53eaf003
6 changed files with 25 additions and 3 deletions

View File

@@ -135,6 +135,7 @@ export const OrgUpdateRequestSchema = z.object({
.max(ORG_SLUG_MAX_LENGTH)
.regex(/^[a-z0-9-]+$/)
.optional(),
iconURL: z.string().url().max(512).nullable().optional(),
statuses: z
.record(z.string())
.refine((obj) => Object.keys(obj).length > 0, "Statuses must have at least one entry")