feat: add email verification endpoints with token-based verification and SMTP integration

This commit is contained in:
JakkrapartXD 2026-01-30 14:53:50 +07:00
parent 9629f79c52
commit babccc4869
3 changed files with 153 additions and 2 deletions

View file

@ -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;
};