1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

Ensure that users are confirmed status (#1033)

This commit is contained in:
Kyle Spearrin
2020-12-09 12:04:14 -05:00
committed by GitHub
parent 7eaf7ab770
commit 01d4d97ef1
3 changed files with 6 additions and 3 deletions

View File

@ -139,7 +139,8 @@ namespace Bit.Api.Controllers
public async Task<ListResponseModel<ProfileOrganizationResponseModel>> GetUser()
{
var userId = _userService.GetProperUserId(User).Value;
var organizations = await _organizationUserRepository.GetManyDetailsByUserAsync(userId);
var organizations = await _organizationUserRepository.GetManyDetailsByUserAsync(userId,
OrganizationUserStatusType.Confirmed);
var responses = organizations.Select(o => new ProfileOrganizationResponseModel(o));
return new ListResponseModel<ProfileOrganizationResponseModel>(responses);
}