feat: add email verification

This commit is contained in:
Tim
2025-06-30 17:53:13 +08:00
parent aa6d32e7dd
commit 39179c370e
5 changed files with 62 additions and 7 deletions

View File

@@ -23,4 +23,9 @@ public class User {
@Column(nullable = false)
private String password;
@Column(nullable = false)
private boolean verified = false;
private String verificationCode;
}