From d75543e6c88b220d8e3c7d66fb768d39f9480587 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 19 Jun 2018 23:40:10 -0400 Subject: [PATCH] totp and edit props --- src/angular/components/view.component.ts | 1 - src/models/view/cipherView.ts | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/angular/components/view.component.ts b/src/angular/components/view.component.ts index 9ff6b83b7..a7325893d 100644 --- a/src/angular/components/view.component.ts +++ b/src/angular/components/view.component.ts @@ -1,7 +1,6 @@ import { EventEmitter, Input, - OnChanges, OnDestroy, Output, } from '@angular/core'; diff --git a/src/models/view/cipherView.ts b/src/models/view/cipherView.ts index 9566c7d28..2b5f1499f 100644 --- a/src/models/view/cipherView.ts +++ b/src/models/view/cipherView.ts @@ -18,6 +18,8 @@ export class CipherView implements View { notes: string; type: CipherType; favorite: boolean; + organizationUseTotp: boolean; + edit: boolean; localData: any; login: LoginView; identity: IdentityView; @@ -36,6 +38,8 @@ export class CipherView implements View { this.organizationId = c.organizationId; this.folderId = c.folderId; this.favorite = c.favorite; + this.organizationUseTotp = c.organizationUseTotp; + this.edit = c.edit; this.type = c.type; this.localData = c.localData; this.collectionIds = c.collectionIds;