|
|
|
|
@ -47,13 +47,14 @@ export class InactiveTwoFactorReportComponent extends CipherReportComponent impl
@@ -47,13 +47,14 @@ export class InactiveTwoFactorReportComponent extends CipherReportComponent impl
|
|
|
|
|
const docs = new Map<string, string>(); |
|
|
|
|
|
|
|
|
|
allCiphers.forEach((ciph) => { |
|
|
|
|
const { type, login, isDeleted, edit, id } = ciph; |
|
|
|
|
const { type, login, isDeleted, edit, id, viewPassword } = ciph; |
|
|
|
|
if ( |
|
|
|
|
type !== CipherType.Login || |
|
|
|
|
(login.totp != null && login.totp !== "") || |
|
|
|
|
!login.hasUris || |
|
|
|
|
isDeleted || |
|
|
|
|
(!this.organization && !edit) |
|
|
|
|
(!this.organization && !edit) || |
|
|
|
|
!viewPassword |
|
|
|
|
) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|