mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
Adding include my items to the services and reports (#16987)
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user