1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

[PM-24379] Properly construct ListResponse from API (#15981)

This commit is contained in:
Shane Melton
2025-08-13 13:03:14 -07:00
committed by GitHub
parent d825b5c6e5
commit 8c8350a4a1

View File

@@ -672,13 +672,14 @@ export class CipherService implements CipherServiceAbstraction {
} }
async getManyFromApiForOrganization(organizationId: string): Promise<CipherView[]> { async getManyFromApiForOrganization(organizationId: string): Promise<CipherView[]> {
const response = await this.apiService.send( const r = await this.apiService.send(
"GET", "GET",
"/ciphers/organization-details/assigned?organizationId=" + organizationId, "/ciphers/organization-details/assigned?organizationId=" + organizationId,
null, null,
true, true,
true, true,
); );
const response = new ListResponse(r, CipherResponse);
return this.decryptOrganizationCiphersResponse(response, organizationId); return this.decryptOrganizationCiphersResponse(response, organizationId);
} }