From e8905ed23a1094fab6f13a2390de5d9b27100a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABlle=20Huisman?= Date: Tue, 27 May 2025 11:16:05 +0200 Subject: [PATCH] fix(user-management): add SMS to authenticator factor type string --- src/mfa/types/authentication_factor.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mfa/types/authentication_factor.rs b/src/mfa/types/authentication_factor.rs index e5b602d..0159dbb 100644 --- a/src/mfa/types/authentication_factor.rs +++ b/src/mfa/types/authentication_factor.rs @@ -15,6 +15,9 @@ pub struct AuthenticationFactorId(String); pub enum AuthenticationFactorTypeString { /// Time-based one-time password (TOTP). Totp, + + /// One-time password via SMS message. + Sms, } /// The ID and name of an [`AuthenticationFactor`].