1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-06 10:32:49 -05:00

Added push notification for when Collection management settings have been changed. (#5230)

This commit is contained in:
Jared McCannon
2025-01-09 10:32:33 -06:00
committed by GitHub
parent e754ae4729
commit ced4870309
11 changed files with 72 additions and 0 deletions

View File

@ -802,6 +802,11 @@ public class OrganizationService : IOrganizationService
Description = organization.DisplayBusinessName()
});
}
if (eventType == EventType.Organization_CollectionManagement_Updated)
{
await _pushNotificationService.PushSyncOrganizationCollectionManagementSettingsAsync(organization);
}
}
public async Task UpdateTwoFactorProviderAsync(Organization organization, TwoFactorProviderType type)