mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
[PM-24964] Stripe-hosted bank account verification (#16220)
* Implement bank account hosted URL verification with webhook handling notification * [PM-25491] Create org/provider bank account warning needs to be updated
This commit is contained in:
@@ -298,6 +298,17 @@ export class DefaultServerNotificationsService implements ServerNotificationsSer
|
||||
case NotificationType.SyncOrganizationCollectionSettingChanged:
|
||||
await this.syncService.fullSync(true);
|
||||
break;
|
||||
case NotificationType.OrganizationBankAccountVerified:
|
||||
this.messagingService.send("organizationBankAccountVerified", {
|
||||
organizationId: notification.payload.organizationId,
|
||||
});
|
||||
break;
|
||||
case NotificationType.ProviderBankAccountVerified:
|
||||
this.messagingService.send("providerBankAccountVerified", {
|
||||
providerId: notification.payload.providerId,
|
||||
adminId: notification.payload.adminId,
|
||||
});
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user