1
0
mirror of https://github.com/bitwarden/server synced 2026-01-26 22:33:31 +00:00

Fix Admin portal user view to only show individual item count

This commit is contained in:
Rui Tome
2026-01-23 13:36:49 +00:00
parent b360d6a00a
commit 24c28a5107

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);