
Also update vendored_requirements to make sure we pull this in. subrepo: subdir: "vendor/registripe" merged: "9fc3645" upstream: origin: "git@gitlab.com:tchaypo/registrasion-stripe.git" branch: "lca2018" commit: "9fc3645" git-subrepo: version: "0.3.1" origin: "???" commit: "???"
14 lines
333 B
Python
14 lines
333 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import models
|
|
from registrasion.models import commerce
|
|
from pinax.stripe.models import Charge
|
|
|
|
|
|
class StripePayment(commerce.PaymentBase):
|
|
|
|
charge = models.ForeignKey(Charge)
|
|
|
|
class StripeCreditNoteRefund(commerce.CreditNoteRefund):
|
|
|
|
charge = models.ForeignKey(Charge)
|