Account deletion

This commit is contained in:
Timothy Armes
2024-04-12 16:23:44 +02:00
parent cfbba733c2
commit 45ea8960e0
10 changed files with 198 additions and 42 deletions
+5
View File
@@ -4,3 +4,8 @@ export type UserModel = {
email: string;
emailVerified?: Date;
};
export type VerificationModel = {
identifier: string;
expires: Date;
};