Skip to content

Commit cf7c133

Browse files
authored
feat(nimbus): Adds Win10 only existing users (#15636)
Because - We want to target Windows 10 (only) existing users for this upcoming [Win10EOS experiment](https://docs.google.com/document/d/1H7gtIUB51XSJBWCSlvA6fixqN1c00I9zdPViZ8Kpd1Y/edit?tab=t.0) This commit - Combines [PROFILE28DAYS](https://github.com/mozilla/experimenter/blob/main/experimenter/experimenter/targeting/constants.py#L54) and [WIN10_NOT_WIN11](https://github.com/mozilla/experimenter/blob/main/experimenter/experimenter/targeting/constants.py#L1128) Fixes #15635
1 parent 2afa3f5 commit cf7c133

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
@@ -2446,6 +2446,17 @@ def __post_init__(self):
24462446
application_choice_names=(Application.DESKTOP.name,),
24472447
)
24482448

2449+
EXISTING_USER_ONLY_WIN10 = NimbusTargetingConfig(
2450+
name="Existing user on Windows 10 only",
2451+
slug="existing_user_win10",
2452+
description="Users with profiles older than 28 days who are on Windows 10",
2453+
targeting=f"{PROFILE28DAYS} && {WIN10_NOT_WIN11.targeting}",
2454+
desktop_telemetry="",
2455+
sticky_required=True,
2456+
is_first_run_required=False,
2457+
application_choice_names=(Application.DESKTOP.name,),
2458+
)
2459+
24492460
NEW_USER_FIVE_BOOKMARKS = NimbusTargetingConfig(
24502461
name="New user (5 bookmarks)",
24512462
slug="new_user_5_bookmarks",

0 commit comments

Comments
 (0)