From 3aaf35e7ab52516ee56f715852433f12b7f48e95 Mon Sep 17 00:00:00 2001 From: Muhammad Abdullah Waheed <42172960+abdullahwaheed@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:31:47 +0500 Subject: [PATCH] chore: added app_name identifier for registration segment event (#35063) --- openedx/core/djangoapps/user_authn/views/register.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openedx/core/djangoapps/user_authn/views/register.py b/openedx/core/djangoapps/user_authn/views/register.py index 659c90b3d2c4..17ca1d4f2a91 100644 --- a/openedx/core/djangoapps/user_authn/views/register.py +++ b/openedx/core/djangoapps/user_authn/views/register.py @@ -393,6 +393,7 @@ def _track_user_registration(user, profile, params, third_party_provider, regist 'total_registration_time': round(float(params.get('totalRegistrationTime', '0'))), 'activation_key': registration.activation_key if registration else None, 'host': params.get('host', ''), + 'app_name': params.get('app_name', ''), 'utm_campaign': params.get('utm_campaign', ''), } # VAN-738 - added below properties to experiment marketing emails opt in/out events on Braze.