1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 19:53:59 +00:00

PM-20578 changed name of encrypt function

This commit is contained in:
voommen-livefront
2025-06-24 15:05:02 -05:00
parent 5107ec2ac2
commit 074997a88e
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ export class RiskInsightsEncryptionService {
private keyGeneratorService: KeyGenerationService,
) {}
async generateEncryptedRiskInsightsReport(
async encryptRiskInsightsReport(
organizationId: OrganizationId,
details: ApplicationHealthReportDetail[],
summary: ApplicationHealthReportSummary,

View File

@@ -232,7 +232,7 @@ export class AllApplicationsComponent implements OnInit {
debounceTime(500),
switchMap(async (report) => {
if (report && report.organization?.id && report.data && report.summary) {
const data = await this.reportDecipherService.generateEncryptedRiskInsightsReport(
const data = await this.reportDecipherService.encryptRiskInsightsReport(
report.organization.id as OrganizationId,
report.data,
report.summary,