1
0
mirror of https://github.com/bitwarden/web synced 2026-01-07 11:03:16 +00:00

[Reset Password v1] Update Temp Password (#1111)

* [Reset Password v1] Update Temp Password

* Updated event string

* updated jslib

Co-authored-by: addison <addisonbeck1@gmail.com>
This commit is contained in:
Vincent Salucci
2021-08-10 07:10:54 -05:00
committed by GitHub
parent 9bdda9cc4c
commit 3857ee2370
8 changed files with 134 additions and 1 deletions

View File

@@ -71,6 +71,9 @@ export class EventService {
case EventType.User_ClientExportedVault:
msg = humanReadableMsg = this.i18nService.t('exportedVault');
break;
case EventType.User_UpdatedTempPassword:
msg = humanReadableMsg = this.i18nService.t('updatedMasterPassword');
break;
// Cipher
case EventType.Cipher_Created:
msg = this.i18nService.t('createdItemId', this.formatCipherId(ev, options));