Skip to content

Commit

Permalink
Remove Reblog event.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloercoli committed Dec 10, 2015
1 parent 71f9b09 commit 1e9c220
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
Expand Up @@ -25,7 +25,6 @@ public enum Stat {
READER_ARTICLE_COMMENTED_ON,
READER_ARTICLE_LIKED,
READER_ARTICLE_OPENED,
READER_ARTICLE_REBLOGGED,
READER_ARTICLE_UNLIKED,
READER_BLOG_BLOCKED,
READER_BLOG_FOLLOWED,
Expand Down
Expand Up @@ -299,12 +299,6 @@ private AnalyticsTrackerMixpanelInstructionsForStat instructionsForStat(
instructions.setSuperPropertyAndPeoplePropertyToIncrement("number_of_times_opened_article");
instructions.setCurrentDateForPeopleProperty("last_time_opened_reader_article");
break;
case READER_ARTICLE_REBLOGGED:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
mixpanelInstructionsForEventName("Reader - Reblogged Article");
instructions.setSuperPropertyAndPeoplePropertyToIncrement("number_of_times_reblogged_article");
instructions.setCurrentDateForPeopleProperty("last_time_reblogged_article");
break;
case READER_ARTICLE_UNLIKED:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
mixpanelInstructionsForEventName("Reader - Unliked Article");
Expand Down
Expand Up @@ -69,9 +69,6 @@ public void track(AnalyticsTracker.Stat stat, Map<String, ?> properties) {
case READER_ARTICLE_OPENED:
eventName = "reader_article_opened";
break;
case READER_ARTICLE_REBLOGGED:
eventName = "reader_article_reblogged";
break;
case READER_ARTICLE_UNLIKED:
eventName = "reader_article_unliked";
break;
Expand Down

0 comments on commit 1e9c220

Please sign in to comment.