Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
totp and edit props
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Jun 20, 2018
1 parent e5db010 commit d75543e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/angular/components/view.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {
EventEmitter,
Input,
OnChanges,
OnDestroy,
Output,
} from '@angular/core';
Expand Down
4 changes: 4 additions & 0 deletions src/models/view/cipherView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit d75543e

Please sign in to comment.