2
0

🛂 Add isSuspended prop on workspace

This commit is contained in:
Baptiste Arnaud
2023-07-04 14:56:36 +02:00
parent 92740ad2ff
commit 5a05310a9c
9 changed files with 95 additions and 13 deletions

View File

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