Add targeting for existing iOS users definition (#11803)

Because: 

- We need to be able to target existing users only (as defined as users
that have been around for greater than 28 days)

This commit

- Adds a target to give the ability to do so.
This commit is contained in:
roux g. buciu 2024-11-19 17:17:03 -05:00 коммит произвёл GitHub
Родитель d2a2d616df
Коммит 08be67a7c1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -1465,6 +1465,17 @@ IOS_CORE_ACTIVE_USER = NimbusTargetingConfig(
application_choice_names=(Application.IOS.name, Application.FOCUS_IOS.name),
)
IOS_EXISTING_USERS = NimbusTargetingConfig(
name="ios existing users",
slug="ios existing users",
description="Targeting users equal to or greater than 28 since install",
targeting="days_since_install >= 28",
desktop_telemetry="",
sticky_required=True,
is_first_run_required=False,
application_choice_names=(Application.IOS.name,),
)
ANDROID_RECENTLY_LOGGED_IN_USER = NimbusTargetingConfig(
name="Recently Logged In Users",
slug="android_recently_logged_in_users",