1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

feat(inactive-user-server-notification): [PM-25130] Inactive User Server Notify (#16151)

* feat(inactive-user-server-notification): [PM-25130] Inactive User Server Notify - Adds in tests and feature for notifying inactive users.

* feat(inactive-user-server-notification): [PM-25130] Inactive User Server Notify - Added feature flag.

* fix(inactive-user-server-notification): [PM-25130] Inactive User Server Notify - Implemented trackedMerge.
This commit is contained in:
Patrick-Pimentel-Bitwarden
2025-09-03 17:01:45 -04:00
committed by GitHub
parent 363d6bea44
commit 281918a7b9
5 changed files with 482 additions and 25 deletions

View File

@@ -50,6 +50,7 @@ export enum FeatureFlag {
/* Platform */
IpcChannelFramework = "ipc-channel-framework",
InactiveUserServerNotification = "pm-25130-receive-push-notifications-for-inactive-users",
PushNotificationsWhenLocked = "pm-19388-push-notifications-when-locked",
}
@@ -107,6 +108,7 @@ export const DefaultFeatureFlagValue = {
/* Platform */
[FeatureFlag.IpcChannelFramework]: FALSE,
[FeatureFlag.InactiveUserServerNotification]: FALSE,
[FeatureFlag.PushNotificationsWhenLocked]: FALSE,
} satisfies Record<FeatureFlag, AllowedFeatureFlagTypes>;