feat(users): Add resend verification email API (#3093)

This commit is contained in:
Mani Chandra
2023-12-08 18:00:41 +05:30
committed by GitHub
parent b279591057
commit 6d5c25e336
8 changed files with 100 additions and 22 deletions

View File

@ -128,3 +128,8 @@ pub struct VerifyEmailRequest {
}
pub type VerifyEmailResponse = DashboardEntryResponse;
#[derive(serde::Deserialize, Debug, serde::Serialize)]
pub struct SendVerifyEmailRequest {
pub email: pii::Email,
}