mirror of
https://github.com/bitwarden/server.git
synced 2025-01-22 21:51:22 +01:00
return ProfileOrganizationResponseModel for /organizations (#1016)
This commit is contained in:
parent
c0defd8971
commit
c0781db333
@ -136,12 +136,12 @@ namespace Bit.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("")]
|
[HttpGet("")]
|
||||||
public async Task<ListResponseModel<OrganizationResponseModel>> GetUser()
|
public async Task<ListResponseModel<ProfileOrganizationResponseModel>> GetUser()
|
||||||
{
|
{
|
||||||
var userId = _userService.GetProperUserId(User).Value;
|
var userId = _userService.GetProperUserId(User).Value;
|
||||||
var organizations = await _organizationRepository.GetManyByUserIdAsync(userId);
|
var organizations = await _organizationUserRepository.GetManyDetailsByUserAsync(userId);
|
||||||
var responses = organizations.Select(o => new OrganizationResponseModel(o));
|
var responses = organizations.Select(o => new ProfileOrganizationResponseModel(o));
|
||||||
return new ListResponseModel<OrganizationResponseModel>(responses);
|
return new ListResponseModel<ProfileOrganizationResponseModel>(responses);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("")]
|
[HttpPost("")]
|
||||||
|
Loading…
Reference in New Issue
Block a user