mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
totp and edit props
This commit is contained in:
parent
e5db01083c
commit
d75543e6c8
@ -1,7 +1,6 @@
|
|||||||
import {
|
import {
|
||||||
EventEmitter,
|
EventEmitter,
|
||||||
Input,
|
Input,
|
||||||
OnChanges,
|
|
||||||
OnDestroy,
|
OnDestroy,
|
||||||
Output,
|
Output,
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
|
@ -18,6 +18,8 @@ export class CipherView implements View {
|
|||||||
notes: string;
|
notes: string;
|
||||||
type: CipherType;
|
type: CipherType;
|
||||||
favorite: boolean;
|
favorite: boolean;
|
||||||
|
organizationUseTotp: boolean;
|
||||||
|
edit: boolean;
|
||||||
localData: any;
|
localData: any;
|
||||||
login: LoginView;
|
login: LoginView;
|
||||||
identity: IdentityView;
|
identity: IdentityView;
|
||||||
@ -36,6 +38,8 @@ export class CipherView implements View {
|
|||||||
this.organizationId = c.organizationId;
|
this.organizationId = c.organizationId;
|
||||||
this.folderId = c.folderId;
|
this.folderId = c.folderId;
|
||||||
this.favorite = c.favorite;
|
this.favorite = c.favorite;
|
||||||
|
this.organizationUseTotp = c.organizationUseTotp;
|
||||||
|
this.edit = c.edit;
|
||||||
this.type = c.type;
|
this.type = c.type;
|
||||||
this.localData = c.localData;
|
this.localData = c.localData;
|
||||||
this.collectionIds = c.collectionIds;
|
this.collectionIds = c.collectionIds;
|
||||||
|
Loading…
Reference in New Issue
Block a user