1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 04:03:25 +00:00

refactor(IdentityTokenResponse): [Auth/PM-3287] Remove deprecated resetMasterPassword property from IdentityTokenResponse (#6676)

This commit is contained in:
Jared Snider
2025-12-17 10:34:12 -05:00
committed by GitHub
parent 00c4ac2df1
commit bbe682dae9
3 changed files with 0 additions and 19 deletions

View File

@@ -671,7 +671,6 @@ 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);