Add missing enum valur to ForcePasswordResetReason (#996)

This commit is contained in:
David Perez 2024-02-12 10:34:21 -06:00 committed by Álison Fernandes
parent 8779f0236b
commit 042b055ecd

View file

@ -20,4 +20,11 @@ enum class ForcePasswordResetReason {
*/
@SerialName("weakMasterPasswordOnLogin")
WEAK_MASTER_PASSWORD_ON_LOGIN,
/**
* Occurs when a TDE user without a password obtains the password reset permission.
* Set post login & decryption client side and by server in sync (to catch logged in users).
*/
@SerialName("tdeUserWithoutPasswordHasPasswordResetPermission")
TDE_USER_WITHOUT_PASSWORD_HAS_PASSWORD_RESET_PERMISSION,
}