Skip to content

Instantly share code, notes, and snippets.

@mediocretes
Created January 29, 2013 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mediocretes/4668183 to your computer and use it in GitHub Desktop.
Save mediocretes/4668183 to your computer and use it in GitHub Desktop.
Reporting revenue to Pirate Metrics using BrainTree webhooks
def revenue
webhook_notification = Braintree::WebhookNotification.parse(params[:bt_signature], params[:bt_payload])
subscription_id = webhook_notification.subscription.id
project = Project.where(:subscription_key => subscription_id).first
PM.revenue({:email => project.user.email,
:amount_in_cents => project.plan.price * 100})
head :ok
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment