From 54ad0a197b2d3db07ed89e173e89f0342860f5bb Mon Sep 17 00:00:00 2001 From: Jared Lockhart <119884+jaredlockhart@users.noreply.github.com> Date: Tue, 12 Nov 2024 16:11:56 -0500 Subject: [PATCH] chore(nimbus): no enterprise on mac/win targeting (#11751) Becuase * We need to target non-enterprise users on mac/win This commit * Adds a no enterprise mac/win advanced targeting fixes #11708 --- experimenter/experimenter/targeting/constants.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/experimenter/experimenter/targeting/constants.py b/experimenter/experimenter/targeting/constants.py index 32f58fc47f..acd0ad0d41 100644 --- a/experimenter/experimenter/targeting/constants.py +++ b/experimenter/experimenter/targeting/constants.py @@ -629,6 +629,17 @@ def __post_init__(self): application_choice_names=(Application.DESKTOP.name,), ) +NO_ENTERPRISE_MAC_WINDOWS_ONLY = NimbusTargetingConfig( + name="No enterprise users (Mac, Windows only)", + slug="no_enterprise_users_mac_windows_only", + description="Exclude users with active enterpries policies on Mac and Windows only", + targeting=f"({NO_ENTERPRISE.targeting}) && ({MAC_WINDOWS_ONLY.targeting})", + desktop_telemetry="", + sticky_required=False, + is_first_run_required=False, + application_choice_names=(Application.DESKTOP.name,), +) + NO_AUTOFILL_ADDRESSES = NimbusTargetingConfig( name="No autofill addresses saved", slug="no_autofill_addresses",