1
0
mirror of https://github.com/bitwarden/server synced 2026-02-09 21:20:01 +00:00

[PM-27179] Fix Admin portal user view to only show individual item count (#6888)

This commit is contained in:
Rui Tomé
2026-02-03 11:15:56 +00:00
committed by GitHub
parent d3aed59fcb
commit cee89dbe83

View File

@@ -86,7 +86,7 @@ public class UsersController : Controller
return RedirectToAction("Index");
}
var ciphers = await _cipherRepository.GetManyByUserIdAsync(id);
var ciphers = await _cipherRepository.GetManyByUserIdAsync(id, withOrganizations: false);
var isTwoFactorEnabled = await _twoFactorIsEnabledQuery.TwoFactorIsEnabledAsync(user);
var verifiedDomain = await _userService.IsClaimedByAnyOrganizationAsync(user.Id);