1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 00:33:23 +00: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

@@ -56,3 +56,10 @@ public class OrganizationStatusPushNotification
public Guid OrganizationId { get; set; }
public bool Enabled { get; set; }
}
public class OrganizationCollectionManagementPushNotification
{
public Guid OrganizationId { get; init; }
public bool LimitCollectionCreation { get; init; }
public bool LimitCollectionDeletion { get; init; }
}