Revert "refactor(IdentityTokenResponse): [Auth/PM-3287] Remove deprecated res…" (#6755)

This reverts commit bbe682dae9.
This commit is contained in:
Jared Snider
2025-12-18 15:10:40 -05:00
committed by GitHub
parent cc2d69e1fe
commit e6c97bd850
3 changed files with 19 additions and 0 deletions

View File

@@ -671,6 +671,7 @@ public abstract class BaseRequestValidator<T> where T : class
customResponse.Add("MasterPasswordPolicy", await GetMasterPasswordPolicyAsync(user));
customResponse.Add("ForcePasswordReset", user.ForcePasswordReset);
customResponse.Add("ResetMasterPassword", string.IsNullOrWhiteSpace(user.MasterPassword));
customResponse.Add("Kdf", (byte)user.Kdf);
customResponse.Add("KdfIterations", user.KdfIterations);
customResponse.Add("KdfMemory", user.KdfMemory);