Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
of their transactions.
|
|
all the user's subscriptions.
|
|
|
|
|
|
|
|
for customers.
|
|
|
|
|
|
|
|
|
|
have multiple subscriptions at a time or not.
|
|
http://stackoverflow.com/questions/15910980/retrieving-a-braintree-customers-subscriptions
|
|
slow. Posted stackoverflow question as not clear if there is more efficient way to get this information via braintree API.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
change for admins.)
|
|
payments from authenticated users will be as a Braintree Customer stored in the braintree vault.
|
|
|
|
|
|
redirect API based from https://github.com/braintree/braintree_ruby_examples/tree/master/rails3_tr_checkout (very little changes were required)
|
|
|
|
|
|
Bugfix/srp fix for zeroprefixed hashes
|
|
|
|
This test would fail sometimes on
assert_equal '/', current_path
I believe it was a timing issue. page.has_content? will wait for the content to show up. So afterwards the current_path should always be correct.
|
|
|
|
|
|
|
|
fix misc security related bugs
|
|
|
|
|
|
We use port 3003 for the integration test server.
This test takes a few seconds (~8) now. Most of this is startup time of the server. A second run still takes 2 seconds like before.
|
|
So there is no way to print it. This message used to be correct but there are also other things that can cause this to fail now. So let's just remove it.
|
|
|
|
SRP happens in two steps:
* handshake
* validation
During the validation we delete the handshake data from the session. So a second validation does not really work. It could build upon the first one but it would not be able to send M2 to the client.
So instead of trying to do sth. usefull when two validation requests are send we require the client to only send one.
|
|
|
|
print couch version in test couch setup
|
|
|
|
|
|
|