1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

Add message for missing event type (#740)

* Add message for missing event type

* update jslib reference
This commit is contained in:
Matt Gibson
2020-12-16 18:29:19 -06:00
committed by GitHub
parent c2e1d325f2
commit c487cf3284
3 changed files with 12 additions and 1 deletions

2
jslib

Submodule jslib updated: ceb78d054c...697e755c0f

View File

@@ -153,6 +153,8 @@ export class EventService {
case EventType.OrganizationUser_UpdatedGroups:
msg = this.i18nService.t('editedGroupsForUser', this.formatOrgUserId(ev));
break;
case EventType.OrganizationUser_UnlinkedSso:
msg = this.i18nService.t('unlinkedSsoUser', this.formatOrgUserId(ev))
// Org
case EventType.Organization_Updated:
msg = this.i18nService.t('editedOrgSettings');

View File

@@ -2489,6 +2489,15 @@
}
}
},
"unlinkedSsoUser": {
"message": "Unlinked SSO for user $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"device": {
"message": "Device"
},