1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

[PM-9437] Use CollectionAccessDetailsResponse type now that is always the type returned from the API (#9951)

This commit is contained in:
Shane Melton
2024-07-03 10:36:24 -07:00
committed by GitHub
parent a9abc772c2
commit 0b08cd0175

View File

@@ -791,7 +791,7 @@ export class ApiService implements ApiServiceAbstraction {
true, true,
true, true,
); );
return new CollectionDetailsResponse(r); return new CollectionAccessDetailsResponse(r);
} }
async putCollection( async putCollection(
@@ -806,7 +806,7 @@ export class ApiService implements ApiServiceAbstraction {
true, true,
true, true,
); );
return new CollectionDetailsResponse(r); return new CollectionAccessDetailsResponse(r);
} }
async putCollectionUsers( async putCollectionUsers(