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:
2
jslib
2
jslib
Submodule jslib updated: ceb78d054c...697e755c0f
@@ -153,6 +153,8 @@ export class EventService {
|
|||||||
case EventType.OrganizationUser_UpdatedGroups:
|
case EventType.OrganizationUser_UpdatedGroups:
|
||||||
msg = this.i18nService.t('editedGroupsForUser', this.formatOrgUserId(ev));
|
msg = this.i18nService.t('editedGroupsForUser', this.formatOrgUserId(ev));
|
||||||
break;
|
break;
|
||||||
|
case EventType.OrganizationUser_UnlinkedSso:
|
||||||
|
msg = this.i18nService.t('unlinkedSsoUser', this.formatOrgUserId(ev))
|
||||||
// Org
|
// Org
|
||||||
case EventType.Organization_Updated:
|
case EventType.Organization_Updated:
|
||||||
msg = this.i18nService.t('editedOrgSettings');
|
msg = this.i18nService.t('editedOrgSettings');
|
||||||
|
|||||||
@@ -2489,6 +2489,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"unlinkedSsoUser": {
|
||||||
|
"message": "Unlinked SSO for user $ID$.",
|
||||||
|
"placeholders": {
|
||||||
|
"id": {
|
||||||
|
"content": "$1",
|
||||||
|
"example": "John Smith"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"device": {
|
"device": {
|
||||||
"message": "Device"
|
"message": "Device"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user