1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-22 12:04:27 -05:00

Remove userId from auth success

we don't want to expand this response model
This commit is contained in:
Matt Gibson 2025-05-20 11:28:23 -07:00
parent 7100b2bfad
commit b4b9d453c7
No known key found for this signature in database
GPG Key ID: 7CBCA182C13B0912

View File

@ -230,7 +230,6 @@ public abstract class BaseRequestValidator<T> where T : class
customResponse.Add("KdfMemory", user.KdfMemory);
customResponse.Add("KdfParallelism", user.KdfParallelism);
customResponse.Add("UserDecryptionOptions", await CreateUserDecryptionOptionsAsync(user, device, GetSubject(context)));
customResponse.Add("UserId", user.Id.ToString());
if (sendRememberToken)
{