iconPreference column

This commit is contained in:
Oliver Bryan
2026-01-17 21:24:25 +00:00
parent 04379121d2
commit 3daed78521
6 changed files with 832 additions and 0 deletions

View File

@@ -297,6 +297,7 @@ export const UserUpdateRequestSchema = z.object({
.regex(/[0-9]/, "Password must contain a number")
.optional(),
avatarURL: z.string().url().nullable().optional(),
iconPreference: z.enum(["lucide", "pixel", "phosphor"]).optional(),
});
export type UserUpdateRequest = z.infer<typeof UserUpdateRequestSchema>;