mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
feat(user): implement change password for user (#2959)
This commit is contained in:
@ -19,3 +19,9 @@ pub struct ConnectAccountResponse {
|
||||
#[serde(skip_serializing)]
|
||||
pub user_id: String,
|
||||
}
|
||||
|
||||
#[derive(serde::Deserialize, Debug, serde::Serialize)]
|
||||
pub struct ChangePasswordRequest {
|
||||
pub new_password: Secret<String>,
|
||||
pub old_password: Secret<String>,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user