1
0
mirror of https://github.com/bitwarden/web synced 2026-01-01 16:13:15 +00:00

[Reset Password] Enrollment actions (#900)

* [Reset Password] Enrollment actions

* Update jslib (0951424 -> f4f00b1)

* Added status icon
This commit is contained in:
Vincent Salucci
2021-04-05 09:48:46 -05:00
committed by GitHub
parent 0aee3b7370
commit 32e9124b9c
5 changed files with 88 additions and 2 deletions

View File

@@ -155,6 +155,13 @@ export class EventService {
break;
case EventType.OrganizationUser_UnlinkedSso:
msg = this.i18nService.t('unlinkedSsoUser', this.formatOrgUserId(ev));
break;
case EventType.OrganizationUser_ResetPassword_Enroll:
msg = this.i18nService.t('eventEnrollPasswordReset', this.formatOrgUserId(ev));
break;
case EventType.OrganizationUser_ResetPassword_Withdraw:
msg = this.i18nService.t('eventWithdrawPasswordReset', this.formatOrgUserId(ev));
break;
// Org
case EventType.Organization_Updated:
msg = this.i18nService.t('editedOrgSettings');