issue # 비밀번호 초기화 로직 구현 중
All checks were successful
Test CI / build (push) Successful in 29s

This commit is contained in:
geonhee-min
2025-11-28 14:18:39 +09:00
parent 928250a291
commit 3704ef18d2
6 changed files with 176 additions and 32 deletions

View File

@@ -3,4 +3,7 @@ import * as z from 'zod';
export const ResetPasswordSchema = z.object({
email: z
.email()
, resetCode: z
.string()
.length(6)
});