feature(dashboard): actually add password production to overviews
This commit is contained in:
@@ -334,3 +334,9 @@ export const zRequestResetPassword = z.object({
|
||||
email: z.string().email(),
|
||||
});
|
||||
export type IRequestResetPassword = z.infer<typeof zRequestResetPassword>;
|
||||
|
||||
export const zSignInShare = z.object({
|
||||
password: z.string().min(1),
|
||||
shareId: z.string().min(1),
|
||||
});
|
||||
export type ISignInShare = z.infer<typeof zSignInShare>;
|
||||
|
||||
Reference in New Issue
Block a user