1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

Revert "Password reprompt (#343)" (#353)

This reverts commit 372e139810.
This commit is contained in:
Oscar Hinton
2021-04-21 20:49:18 +02:00
committed by GitHub
parent 1f62b22285
commit 3c872e56f2
17 changed files with 15 additions and 166 deletions

View File

@@ -1,4 +1,3 @@
import { CipherRepromptType } from '../../enums/cipherRepromptType';
import { CipherType } from '../../enums/cipherType';
import { Cipher } from '../domain/cipher';
@@ -34,7 +33,6 @@ export class CipherView implements View {
collectionIds: string[] = null;
revisionDate: Date = null;
deletedDate: Date = null;
reprompt: CipherRepromptType = null;
constructor(c?: Cipher) {
if (!c) {
@@ -53,7 +51,6 @@ export class CipherView implements View {
this.collectionIds = c.collectionIds;
this.revisionDate = c.revisionDate;
this.deletedDate = c.deletedDate;
this.reprompt = c.reprompt;
}
get subTitle(): string {