Skip to content

Instantly share code, notes, and snippets.

@daniel-nelson
Last active August 29, 2015 13:57
Show Gist options
  • Save daniel-nelson/9748802 to your computer and use it in GitHub Desktop.
Save daniel-nelson/9748802 to your computer and use it in GitHub Desktop.
def payment_received(user.id, amount)
mixpanel.people.track_charge(user.id, amount, {}, nil, '$ignore_time' => true)
mixpanel.track(user.id, 'Payment', 'Action' => 'received', 'Amount' => amount)
end
def payment_refunded(user, amount)
mixpanel.people.track_charge(user.id, -amount, {}, nil, '$ignore_time' => true)
mixpanel.track(user.id, 'Payment', 'Action' => 'refunded', 'Amount' => -amount)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment