symposion_app/registripe/urls.py
Christopher Neugebauer abee9e3c62 Adds support for refunds
2016-09-22 11:04:43 +10:00

15 lines
412 B
Python

from django.conf.urls import url
from registripe import views
from pinax.stripe.views import (
Webhook,
)
urlpatterns = [
url(r"^card/([0-9]*)/$", views.card, name="registripe_card"),
url(r"^pubkey/$", views.pubkey_script, name="registripe_pubkey"),
url(r"^refund/([0-9]*)/$", views.refund, name="registripe_refund"),
url(r"^webhook/$", Webhook.as_view(), name="pinax_stripe_webhook"),
]