From 9dc11b252debe4bbc2f1edf1121bf3c24d18934b Mon Sep 17 00:00:00 2001 From: Emily McMinn Date: Tue, 23 Jun 2026 14:38:44 -0400 Subject: [PATCH] Add targeting for topsites spotlight experiment --- experimenter/experimenter/targeting/constants.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/experimenter/experimenter/targeting/constants.py b/experimenter/experimenter/targeting/constants.py index 79dbcd867..733acbee1 100644 --- a/experimenter/experimenter/targeting/constants.py +++ b/experimenter/experimenter/targeting/constants.py @@ -5068,6 +5068,20 @@ def __post_init__(self): application_choice_names=(Application.DESKTOP.name,), ) +EXISTING_USER_WINDOWS_TASKBAR_TABS_ENABLED_BUT_NOT_USED = NimbusTargetingConfig( + name="Existing windows users with Taskbar Tabs enabled, with no tabs pinned", + slug="existing_windows_user_taskbar_tabs_enabled_but_not_used", + description="Profile 7+ days, Windows only, Taskbar Tabs enabled but no tabs pinned", + targeting=( + f"{PROFILEMORETHAN7DAYS} && {WINDOWS_ONLY.targeting} && {TASKBAR_TABS_ENABLED}" + " && installedWebAppsCount == 0" + ), + desktop_telemetry="", + sticky_required=True, + is_first_run_required=False, + application_choice_names=(Application.DESKTOP.name,), +) + EXISTING_USER_VPN_ELIGIBLE = NimbusTargetingConfig( name="Existing users eligible for VPN, profile 14+ days, no enterprise", slug="existing_user_vpn_eligible",