Skip to content

Commit 64e3039

Browse files
feat(nimbus): add advanced targeting for win10 existing users needing… (#15639)
To support the [Win10 EoS communicate privacy value experiment](https://docs.google.com/document/d/1A43ptw9LQlhF2pR7mcbt_mCrJx9zuaNEHYs1PhJBT2A/edit?tab=t.0) this commit adds advanced targeting that covers: - Win10 users - Profile age 28 days and older - Is NOT set to default --------- Co-authored-by: Jared Lockhart <119884+jaredlockhart@users.noreply.github.com>
1 parent 04f17a6 commit 64e3039

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
@@ -1165,6 +1165,17 @@ def __post_init__(self):
11651165
application_choice_names=(Application.DESKTOP.name,),
11661166
)
11671167

1168+
WIN10_EXISTING_USERS_NEED_DEFAULT = NimbusTargetingConfig(
1169+
name="Windows 10 existing users needing default",
1170+
slug="win10_existing_users_need_default",
1171+
description=("Windows 10 users with profiles older than 28 days needing default"),
1172+
targeting=f"{PROFILE28DAYS} && {WIN10_NEED_DEFAULT.targeting}",
1173+
desktop_telemetry="",
1174+
sticky_required=False,
1175+
is_first_run_required=False,
1176+
application_choice_names=(Application.DESKTOP.name,),
1177+
)
1178+
11681179
GUIDANCE_NOTIFICATION_GIF_EXPERIMENT = NimbusTargetingConfig(
11691180
name="Guidance notification GIF experiment",
11701181
slug="guidance_notification_gif_experiment",

0 commit comments

Comments
 (0)