Skip to content

Commit

Permalink
chore(nimbus): no enterprise on mac/win targeting (#11751)
Browse files Browse the repository at this point in the history
Becuase

* We need to target non-enterprise users on mac/win

This commit

* Adds a no enterprise mac/win advanced targeting

fixes #11708
  • Loading branch information
jaredlockhart authored Nov 12, 2024
1 parent 902e80c commit 54ad0a1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions experimenter/experimenter/targeting/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 54ad0a1

Please sign in to comment.