1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

[PM-17448] add 1 time dialog when deleting managed members for admins (#13139)

* add 1 time dialog when deleting managed members for admins

* fix story

* refactor to show warning for each org. Add test
This commit is contained in:
Brandon Treston
2025-02-05 15:26:25 -05:00
committed by GitHub
parent 605a5fd14b
commit aedb899401
7 changed files with 214 additions and 0 deletions

View File

@@ -32,6 +32,13 @@ export const ORGANIZATION_MANAGEMENT_PREFERENCES_DISK = new StateDefinition(
export const AC_BANNERS_DISMISSED_DISK = new StateDefinition("acBannersDismissed", "disk", {
web: "disk-local",
});
export const DELETE_MANAGED_USER_WARNING = new StateDefinition(
"showDeleteManagedUserWarning",
"disk",
{
web: "disk-local",
},
);
// Billing
export const BILLING_DISK = new StateDefinition("billing", "disk");