1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Open notificationBar (new and existing login) even though vault is locked

This commit is contained in:
Daniel James Smith
2021-09-30 16:03:14 +02:00
parent 889bbf8e2f
commit 210e0801ff
3 changed files with 57 additions and 21 deletions

View File

@@ -0,0 +1,9 @@
export default class addChangePasswordQueueMessage {
type: string;
cipherId: string;
newPassword: string;
domain: string;
tabId: string;
expires: Date;
wasVaultLocked: boolean;
}

View File

@@ -0,0 +1,10 @@
export default class addLoginQueueMessage {
type: string;
username: string;
password: string;
domain: string;
uri: string;
tabId: string;
expires: Date;
wasVaultLocked: boolean;
}