1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +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 { AttachmentData } from './attachmentData';
@@ -34,7 +33,6 @@ export class CipherData {
passwordHistory?: PasswordHistoryData[];
collectionIds?: string[];
deletedDate: string;
reprompt: CipherRepromptType;
constructor(response?: CipherResponse, userId?: string, collectionIds?: string[]) {
if (response == null) {
@@ -55,7 +53,6 @@ export class CipherData {
this.notes = response.notes;
this.collectionIds = collectionIds != null ? collectionIds : response.collectionIds;
this.deletedDate = response.deletedDate;
this.reprompt = response.reprompt;
switch (this.type) {
case CipherType.Login: