totp and edit props

This commit is contained in:
Kyle Spearrin 2018-06-19 23:40:10 -04:00
parent e5db01083c
commit d75543e6c8
2 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,6 @@
import {
EventEmitter,
Input,
OnChanges,
OnDestroy,
Output,
} from '@angular/core';

View File

@ -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;