Stripe: Refund webhook implemented (#32)

This commit is contained in:
Raphael Michel
2015-04-16 10:18:49 +02:00
parent d981998a40
commit 1532b3f1ee
7 changed files with 91 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
from django.conf.urls import url, include
from .views import webhook
urlpatterns = [
url(r'^stripe/', include([
url(r'^webhook/$', webhook, name='webhook'),
])),
]