v0.1.48 - 인증 메일 재전송과 TODO 정리

This commit is contained in:
2026-04-24 11:47:58 +09:00
parent 317a2ce8af
commit 0013f03bb3
7 changed files with 59 additions and 47 deletions

View File

@@ -143,3 +143,11 @@ export async function confirmVerification({ token }) {
body: { token },
})
}
export async function requestVerification({ email }, token) {
return request('/api/auth/verification/request', {
method: 'POST',
token,
body: email ? { email } : {},
})
}