aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/lib
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-22 15:32:40 +0000
committerMohamedBassem <me@mbassem.com>2024-02-22 15:32:40 +0000
commit942aac691225f4895c159a0260890ad2c576e0c9 (patch)
tree06a055fcd59c2753531f498ab58d0af4c7e8464c /packages/web/lib
parent08e7cbcfcb5e0b992d10ada324712c224b7a4d07 (diff)
downloadkarakeep-942aac691225f4895c159a0260890ad2c576e0c9.tar.zst
feature: Add support for credentials registration and sign in
Diffstat (limited to 'packages/web/lib')
-rw-r--r--packages/web/lib/types/api/users.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/web/lib/types/api/users.ts b/packages/web/lib/types/api/users.ts
new file mode 100644
index 00000000..c2fe182a
--- /dev/null
+++ b/packages/web/lib/types/api/users.ts
@@ -0,0 +1,13 @@
+import { z } from "zod";
+
+export const zSignUpSchema = z
+ .object({
+ name: z.string().min(1, { message: "Name can't be empty" }),
+ email: z.string().email(),
+ password: z.string().min(8),
+ confirmPassword: z.string(),
+ })
+ .refine((data) => data.password === data.confirmPassword, {
+ message: "Passwords don't match",
+ path: ["confirmPassword"],
+ });