2
0

🛂 (radar) Add isVerified field in workspace

This commit is contained in:
Baptiste Arnaud
2023-12-19 14:14:47 +01:00
parent deab1a12e9
commit 655b32ef75
7 changed files with 32 additions and 8 deletions

View File

@ -51,6 +51,7 @@ export const workspaceSchema = z.object({
isQuarantined: z.boolean(),
isSuspended: z.boolean(),
isPastDue: z.boolean(),
isVerified: z.boolean().nullable(),
}) satisfies z.ZodType<WorkspacePrisma>
export type Workspace = z.infer<typeof workspaceSchema>