1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-19 10:54:00 +00:00

[PM-28746] Item transfer event logs (#18032)

* [PM-28746] Add item organization event types and i18n strings

* [PM-28746] Log event when transfer is accepted or declined
This commit is contained in:
Shane Melton
2025-12-18 10:20:59 -08:00
committed by jaasen-livefront
parent 372ea3ce22
commit 9c52600a0a
5 changed files with 95 additions and 2 deletions

View File

@@ -452,6 +452,12 @@ export class EventService {
this.getShortId(ev.organizationId),
);
break;
case EventType.Organization_ItemOrganization_Accepted:
msg = humanReadableMsg = this.i18nService.t("userAcceptedTransfer");
break;
case EventType.Organization_ItemOrganization_Declined:
msg = humanReadableMsg = this.i18nService.t("userDeclinedTransfer");
break;
// Policies
case EventType.Policy_Updated: {