summaryrefslogtreecommitdiff
path: root/postgresqleu/stripepayment/api.py
AgeCommit message (Collapse)Author
2023-06-15Lock stripe API versionMagnus Hagander
Newer versions have changed a number of things. We need to update to work with those at some point, but to start with let's make sure we get the current deployment working.
2020-07-13Remove unused importsMagnus Hagander
2020-03-12Replace datetime.now() with timezone.now()Magnus Hagander
As a step on the way to better timezone support, use the django function timezone.now() instead of datetime.now(). As long as we haven't enabled timezones globally this becomes a no-op and does exactly what it did before, but once timezones are enabled it will generate datetimes that are aware of this. No functionality change but gets a lot of boiler-plate out of the way making the verification of the rest of the timezone work easier.
2019-11-20Pass id and not object for invoicerefund objectsMagnus Hagander
2019-08-14Remove two instances of left over debugging codeMagnus Hagander
2019-07-08Initial support for Stripe paymentsMagnus Hagander
No support for payout tracking yet, since Stripe makes it impossible to test that until 7 days after you sign up for the test account...