diff --git a/common/src/models/domain/account.ts b/common/src/models/domain/account.ts index ef651860..4cd755de 100644 --- a/common/src/models/domain/account.ts +++ b/common/src/models/domain/account.ts @@ -182,14 +182,5 @@ export class Account { return false; } - - private get hasMasterKey(): boolean { - return this.cryptoMasterKey != null; - } - - private get isActive(): boolean { - const diffSeconds = ((new Date()).getTime() - this.lastActive) / 1000; - return diffSeconds < (this.vaultTimeout * 60); - } }