Validate verify code at register endpoint

This commit is contained in:
2026-01-22 17:38:09 -07:00
parent e164e4fdb0
commit 9e6822fc7a
2 changed files with 44 additions and 5 deletions

View File

@@ -386,7 +386,8 @@ app.post(
body: t.Object({
username: t.String(),
password: t.String(),
email: t.String()
email: t.String(),
verifyCode: t.String()
})
}
)