From 5b088e2e990bff54501c35fa34a7742afb8922ab Mon Sep 17 00:00:00 2001 From: Vijay Oommen Date: Wed, 26 Nov 2025 09:23:27 -0600 Subject: [PATCH] PM-28377 Retrieve member items while retrieve ciphers for an organization (#17657) --- .../services/domain/risk-insights-orchestrator.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-orchestrator.service.ts b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-orchestrator.service.ts index 51d35570cd..050ec8df94 100644 --- a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-orchestrator.service.ts +++ b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-orchestrator.service.ts @@ -1063,6 +1063,7 @@ export class RiskInsightsOrchestratorService { this.logService.debug("[RiskInsightsOrchestratorService] Fetching organization ciphers"); const ciphers = await this.cipherService.getAllFromApiForOrganization( orgDetails.organizationId, + true, ); this._ciphersSubject.next(ciphers); this._hasCiphersSubject$.next(ciphers.length > 0);