From e2d445dd3ca64c3f761e4f6fd17d174017258f6e Mon Sep 17 00:00:00 2001 From: SmithThe4th Date: Fri, 26 Apr 2024 16:27:00 -0400 Subject: [PATCH] Changed PutCollections response model to return collection ids (#4023) --- src/Api/Vault/Controllers/CiphersController.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Api/Vault/Controllers/CiphersController.cs b/src/Api/Vault/Controllers/CiphersController.cs index 95f3e52575..7baaaa9274 100644 --- a/src/Api/Vault/Controllers/CiphersController.cs +++ b/src/Api/Vault/Controllers/CiphersController.cs @@ -560,7 +560,7 @@ public class CiphersController : Controller [HttpPut("{id}/collections")] [HttpPost("{id}/collections")] - public async Task PutCollections(Guid id, [FromBody] CipherCollectionsRequestModel model) + public async Task 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")]