1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 15:53:59 +00:00

[PM-24414] Remove CollectionType property from the public CollectionResponseModel (#6180)

This commit is contained in:
Rui Tomé
2025-08-13 15:01:51 +01:00
committed by GitHub
parent f88baba66b
commit 87877aeb3d
2 changed files with 0 additions and 7 deletions

View File

@@ -67,7 +67,6 @@ public class CollectionsControllerTests
var jsonResult = Assert.IsType<JsonResult>(result);
var response = Assert.IsType<CollectionResponseModel>(jsonResult.Value);
Assert.Equal(collection.Id, response.Id);
Assert.Equal(collection.Type, response.Type);
}
[Theory, BitAutoData]