-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial refunds and webhook for disputes (#67)
* Partial refunds * Add webhook handler for disputes
- Loading branch information
Przemysław Świercz
authored
Sep 20, 2019
1 parent
519005f
commit 8668ee5
Showing
6 changed files
with
413 additions
and
186 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 2.1.11 on 2019-09-17 11:57 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('aa_stripe', '0021_auto_20190906_1623'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='stripecharge', | ||
name='amount_refunded', | ||
field=models.IntegerField(default=0, help_text='in cents', null=True), | ||
), | ||
] |
Oops, something went wrong.