mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-02 23:11:40 +01:00
Add event logging for ResetSsoLink (#1173)
* Add event logging for ResetSsoLink * Updated jslib with new event-type Co-authored-by: Chad Scharf <3904944+cscharf@users.noreply.github.com>
This commit is contained in:
parent
9832deb20c
commit
3a25b1fb20
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit d50531886bb8a797e98a3aeea08a7ed54e768788
|
||||
Subproject commit 6c9485596c27cbd889c8deeb95e4e4e84b3e58bb
|
@ -206,6 +206,10 @@ export class EventService {
|
||||
msg = this.i18nService.t('eventAdminPasswordReset', this.formatOrgUserId(ev));
|
||||
humanReadableMsg = this.i18nService.t('eventAdminPasswordReset', this.getShortId(ev.organizationUserId));
|
||||
break;
|
||||
case EventType.OrganizationUser_ResetSsoLink:
|
||||
msg = this.i18nService.t('eventResetSsoLink', this.formatOrgUserId(ev));
|
||||
humanReadableMsg = this.i18nService.t('eventResetSsoLink', this.getShortId(ev.organizationUserId));
|
||||
break;
|
||||
// Org
|
||||
case EventType.Organization_Updated:
|
||||
msg = humanReadableMsg = this.i18nService.t('editedOrgSettings');
|
||||
|
@ -3952,6 +3952,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user