1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 10:43:47 +00:00

Reports to show my items

This commit is contained in:
Tom
2025-10-07 12:39:28 -04:00
parent 2a36933907
commit c92c20b26f
5 changed files with 5 additions and 5 deletions

View File

@@ -86,7 +86,7 @@ export class ExposedPasswordsReportComponent
}
getAllCiphers(): Promise<CipherView[]> {
return this.cipherService.getAllFromApiForOrganization(this.organization.id);
return this.cipherService.getAllFromApiForOrganization(this.organization.id, true);
}
canManageCipher(c: CipherView): boolean {

View File

@@ -89,7 +89,7 @@ export class InactiveTwoFactorReportComponent
}
getAllCiphers(): Promise<CipherView[]> {
return this.cipherService.getAllFromApiForOrganization(this.organization.id);
return this.cipherService.getAllFromApiForOrganization(this.organization.id, true);
}
protected canManageCipher(c: CipherView): boolean {

View File

@@ -84,7 +84,7 @@ export class ReusedPasswordsReportComponent
}
getAllCiphers(): Promise<CipherView[]> {
return this.cipherService.getAllFromApiForOrganization(this.organization.id);
return this.cipherService.getAllFromApiForOrganization(this.organization.id, true);
}
canManageCipher(c: CipherView): boolean {

View File

@@ -89,7 +89,7 @@ export class UnsecuredWebsitesReportComponent
}
getAllCiphers(): Promise<CipherView[]> {
return this.cipherService.getAllFromApiForOrganization(this.organization.id);
return this.cipherService.getAllFromApiForOrganization(this.organization.id, true);
}
protected canManageCipher(c: CipherView): boolean {

View File

@@ -88,7 +88,7 @@ export class WeakPasswordsReportComponent
}
getAllCiphers(): Promise<CipherView[]> {
return this.cipherService.getAllFromApiForOrganization(this.organization.id);
return this.cipherService.getAllFromApiForOrganization(this.organization.id, true);
}
canManageCipher(c: CipherView): boolean {