Created
February 28, 2012 18:03
-
-
Save knewter/1934012 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def braintree_create | |
result = Braintree::TransparentRedirect.confirm(request.query_string) | |
customer = IsotopeSubscriptions.customer_create.call(customer_hash(result.customer)) | |
if customer | |
redirect_to customer_path(customer) | |
else | |
render action: 'new' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment