Add message for missing event type (#740)
* Add message for missing event type * update jslib reference
This commit is contained in:
parent
c2e1d325f2
commit
c487cf3284
2
jslib
2
jslib
|
@ -1 +1 @@
|
|||
Subproject commit ceb78d054ccbd362459bca60bb4b05c16f164ffa
|
||||
Subproject commit 697e755c0f43119e0811e2c9452c0d9d925970eb
|
|
@ -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');
|
||||
|
|
|
@ -2489,6 +2489,15 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"unlinkedSsoUser": {
|
||||
"message": "Unlinked SSO for user $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue