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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit ceb78d054ccbd362459bca60bb4b05c16f164ffa
Subproject commit 697e755c0f43119e0811e2c9452c0d9d925970eb

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"
},