mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
totp and edit props
This commit is contained in:
parent
e5db01083c
commit
d75543e6c8
@ -1,7 +1,6 @@
|
||||
import {
|
||||
EventEmitter,
|
||||
Input,
|
||||
OnChanges,
|
||||
OnDestroy,
|
||||
Output,
|
||||
} from '@angular/core';
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user