1
0
mirror of https://github.com/bitwarden/server synced 2026-01-07 02:53:38 +00:00

Add limit item deletion server code (#5308)

This commit is contained in:
Jimmy Vo
2025-01-28 12:58:04 -05:00
committed by GitHub
parent 6d7bdb6ec0
commit 93f5b34223
16 changed files with 24 additions and 4 deletions

View File

@@ -239,6 +239,7 @@ public class AzureQueuePushNotificationService : IPushNotificationService
{
OrganizationId = organization.Id,
LimitCollectionCreation = organization.LimitCollectionCreation,
LimitCollectionDeletion = organization.LimitCollectionDeletion
LimitCollectionDeletion = organization.LimitCollectionDeletion,
LimitItemDeletion = organization.LimitItemDeletion
}, false);
}

View File

@@ -248,6 +248,7 @@ public class NotificationsApiPushNotificationService : BaseIdentityClientService
{
OrganizationId = organization.Id,
LimitCollectionCreation = organization.LimitCollectionCreation,
LimitCollectionDeletion = organization.LimitCollectionDeletion
LimitCollectionDeletion = organization.LimitCollectionDeletion,
LimitItemDeletion = organization.LimitItemDeletion
}, false);
}

View File

@@ -273,7 +273,8 @@ public class RelayPushNotificationService : BaseIdentityClientService, IPushNoti
{
OrganizationId = organization.Id,
LimitCollectionCreation = organization.LimitCollectionCreation,
LimitCollectionDeletion = organization.LimitCollectionDeletion
LimitCollectionDeletion = organization.LimitCollectionDeletion,
LimitItemDeletion = organization.LimitItemDeletion
},
false
);