mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
feat(users): Create Decision manager for User Flows (#4518)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -2706,3 +2706,17 @@ pub enum BankHolderType {
|
||||
Personal,
|
||||
Business,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq, strum::Display, serde::Deserialize, serde::Serialize)]
|
||||
#[strum(serialize_all = "snake_case")]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub enum TokenPurpose {
|
||||
#[serde(rename = "totp")]
|
||||
#[strum(serialize = "totp")]
|
||||
TOTP,
|
||||
VerifyEmail,
|
||||
AcceptInvitationFromEmail,
|
||||
ResetPassword,
|
||||
AcceptInvite,
|
||||
UserInfo,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user