Skip to content

Commit 7930e61

Browse files
authored
feat(nimbus): add advanced targeting for win10 users + at least 10 bookmarks (#16363)
To support the [Win10 EoS Using multiple bookmarks as reminders to save data pre-migration](https://docs.google.com/document/d/1rAU1eSLkKX0YP_l6T9KNuMU-5W_1hi6Q7hjjATZGhF4/edit?tab=t.0) experiment, this commit adds advanced targeting that cover: - Win10 users - Users with at least 10 bookmarks
1 parent 645478e commit 7930e61

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

experimenter/experimenter/targeting/constants.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2559,6 +2559,17 @@ def __post_init__(self):
25592559
application_choice_names=(Application.DESKTOP.name,),
25602560
)
25612561

2562+
WIN10_AT_LEAST_TEN_BOOKMARKS = NimbusTargetingConfig(
2563+
name="Windows 10 users with at least 10 bookmarks",
2564+
slug="win10_at_least_ten_bookmarks",
2565+
description="Windows 10 users with at least 10 bookmarks",
2566+
targeting=f"{WIN10_NOT_WIN11.targeting} && totalBookmarksCount >= 10",
2567+
desktop_telemetry="",
2568+
sticky_required=False,
2569+
is_first_run_required=False,
2570+
application_choice_names=(Application.DESKTOP.name,),
2571+
)
2572+
25622573
NOT_MAC = NimbusTargetingConfig(
25632574
name="Not Mac Users",
25642575
slug="not_mac_users",

0 commit comments

Comments
 (0)