Skip to content

Commit

Permalink
fix: Align with analytic event naming practices
Browse files Browse the repository at this point in the history
  • Loading branch information
dcalhoun committed Nov 15, 2024
1 parent fb339a8 commit f1d467b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ public static void viewAppSettingsForResult(Activity activity) {

public static void viewExperimentalFeatures(@NonNull Context context) {
Intent intent = new Intent(context, ExperimentalFeaturesActivity.class);
AnalyticsTracker.track(AnalyticsTracker.Stat.OPENED_EXPERIMENTAL_FEATURES);
AnalyticsTracker.track(AnalyticsTracker.Stat.EXPERIMENTAL_FEATURES_OPENED);
context.startActivity(intent);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ public enum Stat {
ME_GRAVATAR_UPLOADED,
ME_GRAVATAR_UPLOAD_UNSUCCESSFUL,
ME_GRAVATAR_UPLOAD_EXCEPTION,
EXPERIMENTAL_FEATURES_OPENED,
MY_SITE_ACCESSED("my_site_tab_accessed"),
MY_SITE_ICON_TAPPED,
MY_SITE_ICON_REMOVED,
Expand Down Expand Up @@ -348,7 +349,6 @@ public enum Stat {
ACCOUNT_SETTINGS_CHANGE_USERNAME_FAILED,
ACCOUNT_SETTINGS_CHANGE_USERNAME_SUGGESTIONS_FAILED,
OPENED_APP_SETTINGS("app_settings_opened"),
OPENED_EXPERIMENTAL_FEATURES("experimental_features_opened"),
OPENED_MY_PROFILE("my_profile_opened"),
OPENED_PEOPLE_MANAGEMENT("people_management_list_opened"),
OPENED_PERSON("people_management_details_opened"),
Expand Down

0 comments on commit f1d467b

Please sign in to comment.