Skip to content

Commit df5964f

Browse files
committed
Merge remote-tracking branch 'origin/develop' into issue/2470-track-helpshift-replies
1 parent 841f0c5 commit df5964f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

WordPressAnalytics/src/main/java/org/wordpress/android/analytics/AnalyticsTracker.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ public enum Stat {
8888
APPLICATION_STARTED,
8989
PUSH_NOTIFICATION_RECEIVED,
9090
SUPPORT_OPENED_HELPSHIFT_SCREEN,
91+
SUPPORT_SENT_REPLY_TO_SUPPORT_MESSAGE,
9192
LOGIN_FAILED,
9293
LOGIN_FAILED_TO_GUESS_XMLRPC
9394
}

WordPressAnalytics/src/main/java/org/wordpress/android/analytics/AnalyticsTrackerMixpanel.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,11 @@ private AnalyticsTrackerMixpanelInstructionsForStat instructionsForStat(
604604
mixpanelInstructionsForEventName("Support - Opened Helpshift Screen");
605605
instructions.addSuperPropertyToFlag("opened_helpshift_screen");
606606
break;
607+
case SUPPORT_SENT_REPLY_TO_SUPPORT_MESSAGE:
608+
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
609+
mixpanelInstructionsForEventName("Support - Replied to Helpshift");
610+
instructions.addSuperPropertyToFlag("support_replied_to_helpshift");
611+
break;
607612
case LOGIN_FAILED:
608613
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
609614
mixpanelInstructionsForEventName("Login - Failed Login");

0 commit comments

Comments
 (0)