feat: add email verification endpoints with token-based verification and SMTP integration
This commit is contained in:
parent
9629f79c52
commit
babccc4869
3 changed files with 153 additions and 2 deletions
|
|
@ -82,4 +82,14 @@ export interface updateAvatarResponse {
|
|||
id: number;
|
||||
avatar_url: string;
|
||||
};
|
||||
};
|
||||
|
||||
export interface SendVerifyEmailResponse {
|
||||
code: number;
|
||||
message: string;
|
||||
};
|
||||
|
||||
export interface VerifyEmailResponse {
|
||||
code: number;
|
||||
message: string;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue