mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Changed PutCollections response model to return collection ids (#4023)
This commit is contained in:
parent
b3e5076128
commit
e2d445dd3c
@ -560,7 +560,7 @@ public class CiphersController : Controller
|
||||
|
||||
[HttpPut("{id}/collections")]
|
||||
[HttpPost("{id}/collections")]
|
||||
public async Task<CipherResponseModel> PutCollections(Guid id, [FromBody] CipherCollectionsRequestModel model)
|
||||
public async Task<CipherDetailsResponseModel> PutCollections(Guid id, [FromBody] CipherCollectionsRequestModel model)
|
||||
{
|
||||
var userId = _userService.GetProperUserId(User).Value;
|
||||
var cipher = await GetByIdAsync(id, userId);
|
||||
@ -573,9 +573,8 @@ public class CiphersController : Controller
|
||||
await _cipherService.SaveCollectionsAsync(cipher,
|
||||
model.CollectionIds.Select(c => new Guid(c)), userId, false);
|
||||
|
||||
var updatedCipherCollections = await GetByIdAsync(id, userId);
|
||||
var response = new CipherResponseModel(updatedCipherCollections, _globalSettings);
|
||||
return response;
|
||||
var collectionCiphers = await _collectionCipherRepository.GetManyByUserIdCipherIdAsync(userId, id, UseFlexibleCollections);
|
||||
return new CipherDetailsResponseModel(cipher, _globalSettings, collectionCiphers);
|
||||
}
|
||||
|
||||
[HttpPut("{id}/collections-admin")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user