mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-10 09:59:48 +01:00
[Key Connector] Add firstSsoLogin event (#1305)
* Add firstSsoLogin event * Update jslib
This commit is contained in:
parent
1e5c2c35e5
commit
7c902e61d6
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 9b7aaa272d2ba226952c8f95c6354f952a66faa0
|
||||
Subproject commit 10fa164ffc6f61e2264633ca4874473fa6afb4f4
|
@ -213,6 +213,10 @@ export class EventService {
|
||||
msg = this.i18nService.t('eventResetSsoLink', this.formatOrgUserId(ev));
|
||||
humanReadableMsg = this.i18nService.t('eventResetSsoLink', this.getShortId(ev.organizationUserId));
|
||||
break;
|
||||
case EventType.OrganizationUser_FirstSsoLogin:
|
||||
msg = this.i18nService.t('firstSsoLogin', this.formatOrgUserId(ev));
|
||||
humanReadableMsg = this.i18nService.t('firstSsoLogin', this.getShortId(ev.organizationUserId));
|
||||
break;
|
||||
// Org
|
||||
case EventType.Organization_Updated:
|
||||
msg = humanReadableMsg = this.i18nService.t('editedOrgSettings');
|
||||
|
@ -4048,6 +4048,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"firstSsoLogin": {
|
||||
"message": "$ID$ logged in using Sso for the first time",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user